twobagels

Consider the hexagonal array shown below. Then nth hex number is defined as the total number of dots in the first n layers. The first seven hex numbers are 1, 7, 19, 37, 61, 91 and 127.
What is the 50th hex number?
A. 294
B. 7,351
C. 7,650
D. 7,651
E. 8,751
Let's try to establish a pattern -
\(n_1\) = 1 = (6*
0)+1
\(n_2\) = 7 = (6*
1)+1
\(n_3\) = 19 = (6*
3)+1
\(n_4\) = 37 = (6*
6)+1
\(n_5\) = 61 = (6*
10)+1
\(n_6\) = 91 = (6*
15)+1
\(n_7\) = 126 = (6*
21)+1
The multiplying factor in blue is the sum of all the natural numbers from 1 to n-1
For example
\(n_3\) → The multiplying factor, 3, is the sum (1+2)
\(n_4\) → The multiplying factor, 6, is the sum (1+2+3)
\(n_5\) → The multiplying factor, 10, is the sum (1+2+3+4)
so on ..
Therefore the pattern is = 6 (sum of all integers from 1 to n-1) + 1
\(n_{50}\)= 6 (sum of all integers from 1 to 49) + 1
\(n_{50}= 6 (\frac{49*50}{2}) + 1\)
\(n_{50}= 6 (49*25) + 1\)
= \(7351\)
Option B