Pascal Variant

A Pascal-like Triangle, where each entry of each subsequent row is constructed by adding the number above and to the left with the number above and to the right, is started with ( 2 , 3 ) (2, 3) in the 1 st 1^{\text{st}} row, so that the 2 nd 2^{\text{nd}} row is ( 2 , 5 , 3 ) (2, 5, 3) , the 3 rd 3^{\text{rd}} row is ( 2 , 7 , 8 , 3 ) (2, 7, 8, 3) , the 4 th 4^{\text{th}} row is ( 2 , 9 , 15 , 11 , 3 ) (2, 9, 15, 11, 3) , and so on.

Find the 4 th 4^{\text{th}} number in the 100 0 th 1000^{\text{th}} row.


The answer is 332832501.

This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try refreshing the page, (b) enabling javascript if it is disabled on your browser and, finally, (c) loading the non-javascript version of this page . We're sorry about the hassle.

4 solutions

David Vreken
Feb 7, 2019

Breaking down the 2 2 's and 3 3 's in each entry, we obtain the following:

where the number of 2 2 's and 3 3 's follow the pattern of two Pascal Triangles, one for the 2 2 's on the left side, and one for the 3 3 's on the right side:

Using the equations for Pascal's Triangle, the m th m^{\text{th}} number in the n th n^{\text{th}} row has ( n 1 m 1 ) \binom{n-1}{m-1} 2 2 's and ( n 1 m 2 ) \binom{n-1}{m-2} 3 3 's, making the entry equal to 2 ( n 1 m 1 ) + 3 ( n 1 m 2 ) 2\binom{n-1}{m-1} + 3\binom{n-1}{m-2} .

Therefore, the 4 th 4^{\text{th}} number in the 100 0 th 1000^{\text{th}} row is 2 ( 1000 1 4 1 ) + 3 ( 1000 1 4 2 ) = 332832501 2\binom{1000-1}{4-1} + 3\binom{1000-1}{4-2} = \boxed{332832501} .

Jordan Cahn
Feb 6, 2019

In any Pascal-like triangle, the k k th number in the n n th row is the sum of the entries in the ( k 1 ) (k-1) th diagonal, up to row n 1 n-1 . For example, the 3rd entry in the fourth row is 15 15 , which is also the sum of the entries in the 2nd diagonal up to row 3 ( 3 + 5 + 7 = 15 3+5+7=15 ).

Note that, since we start with 3 3 and add 2 2 every time, the 2 2 nd diagonal is the odd integers (starting with 3 3 ). Therefore, the n n th entry (by which I mean the entry in row n n ) in the 3 3 rd diagonal is simply the sum of the first n 1 n-1 odd numbers (not counting 1 1 ). Or, alternatively, the sum of the first n n odd numbers minus 1 1 . But the sum of the first n n odd numbers is n 2 n^2 . So the n n th entry in the third diagonal is n 2 1 n^2-1 .

Now, consider the fourth diagonal. The n n th entry will be the sum of the previous n 1 n-1 entries in the third diagonal. So we have i = 1 n 1 ( i 2 1 ) = i = 1 n 1 ( i 2 ) ( n 1 ) = n ( n 1 ) ( 2 n 1 ) 6 ( n 1 ) \sum_{i=1}^{n-1} (i^2-1) = \sum_{i=1}^{n-1}(i^2) - (n-1) = \frac{n(n-1)(2n-1)}{6} - (n-1) where the final equality comes from evaluating the identity i = 1 k i 2 = k ( k + 1 ) ( 2 k + 1 ) 6 \sum\limits_{i=1}^k i^2 = \dfrac{k(k+1)(2k+1)}{6} at k = n 1 k=n-1 . All that remains is to calculate 1000 999 1999 6 999 = 332 , 832 , 501 \frac{1000\cdot 999 \cdot 1999}{6} - 999 = \boxed{332{,}832{,}501}

Very nice solution!

David Vreken - 2 years, 4 months ago

Well,I did it the same way.

Meet Patel - 2 years, 3 months ago
Mark Hennings
Feb 6, 2019

This is basically a linear combination of Pascal's triangles, so that the k k th element in the n n th row is X n , k = 2 ( n k ) + ( n 1 k 1 ) 0 k n X_{n,k} \; = \; 2\binom{n}{k} + \binom{n-1}{k-1} \hspace{2cm} 0 \le k \le n This makes X 1000 , 3 = 332832501 X_{1000,3} = \boxed{332832501} .

Nice clean solution!

David Vreken - 2 years, 4 months ago

@Mark Hennings Wait........how did you arrive at this result??? I didn't get it Sir.........could you please elaborate it more......

Aaghaz Mahajan - 2 years, 4 months ago

Log in to reply

If you start with 2 , 2 2,2 in the top row, then you obtain double the normal Pascal's Triangle (without the top number). That puts 2 ( n k ) 2\binom{n}{k} in the k k th position of the n n th row. If you start with 0 , 1 0,1 in the top row, you obtain a normal Pascal's Triangle, flanked by a diagonal of 0 0 s down the LHS. That puts ( n 1 k 1 ) \binom{n-1}{k-1} in the k k th position of the n n th row. Now just add these up.

Mark Hennings - 2 years, 4 months ago

Log in to reply

Ohhhh!!! This is nice!!!! Thanks a lot, Sir....!! It is always great to learn from your solutions!! They are truly nice!!

Aaghaz Mahajan - 2 years, 4 months ago

@Mark Hennings, sir I think there is a typo in X(1000,3). Shouldn't it be 1000,4 ??

Also,sir, by putting (n,k)= (3,3), we don't get 8.

Mr. India - 2 years, 3 months ago

Log in to reply

As in Pascal’s triangle, the index k k starts at 0 0 , so X n , k X_{n,k} is in fact the ( k + 1 ) (k+1) st element in the n n th row.

Mark Hennings - 2 years, 3 months ago
Sachin Mital
Apr 23, 2019

I solved it a little differently. I saw the pattern of the fourth row which is: 3,11,26,50 etc... which has the difference of 8,15,24 etc... which is simply (3^2-1), (4^2-1) and so on. So I know that by this logic, the 1000th row would the 998th element of this sequence because the fourth number only appears starting from the third row. Now, by this logic, this element would be equal to: 3+(3^2-1)+(4^2-1)...+(999^2-1) which is equal to all the sum of perfect squares from 1 to 999 (which is a simple formula) minus the sum of 1^2 and 2^2, minus 997 (due to the -1's in the sum) plus the 3 in the equation. That gives the solution!

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...