Impossible Pattern

1 , 2 , 6 , 15 , 31 , 56 , ? \large 1, 2, 6, 15, 31, 56, ?

What is the next number in the sequence above?

92 87 67 55

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

Chew-Seong Cheong
Apr 13, 2018

Let { a n } = 1 , 2 , 6 , 15 , 31 , 56 , . . . \{a_n\} = 1, 2, 6, 15, 31, 56, ... such that a 1 = 1 a_1=1 , a 2 = 2 a_2=2 , a 3 = 6 a_3=6 and so on. We need to find a 7 a_7 . We note that:

a 2 a 1 = 2 1 = 1 = 1 2 a 3 a 2 = 6 2 = 4 = 2 2 a 4 a 3 = 15 6 = 9 = 3 2 \begin{array} {ll} a_2-a_\red 1 = 2-1=1 & = \red 1^2 \\ a_3-a_\red 2 = 6-2=4 & = \red 2^2 \\ a_4-a_\red 3 = 15-6=9 & = \red 3^2 \end{array}

a n + 1 a n = n 2 a 7 a 6 = 6 2 a 7 = 36 + 56 = 92 \begin{aligned} \implies a_{n+1}-a_{\color{#D61F06}n} & = {\color{#D61F06}n}^2 \\ a_7-a_{\color{#D61F06}6} & = {\color{#D61F06}6}^2 \\ \implies a_7 & = 36+56 = \boxed{92} \end{aligned}


If we want to find a n a_n in terms of n n :

a k + 1 a k = k 2 where k N k = 1 n 1 a k + 1 k = 1 n 1 a k = k = 1 n 1 k 2 a n a 1 = n ( n 1 ) ( 2 n 1 ) 6 a n = n ( n 1 ) ( 2 n 1 ) 6 + 1 a 7 = 7 6 13 6 + 1 = 92 \begin{aligned} a_{k+1} - a_k & = k^2 & \small \color{#3D99F6} \text{where }k \in \mathbb N \\ \sum_{k=1}^{n-1} a_{k+1} - \sum_{k=1}^{n-1} a_k & = \sum_{k=1}^{n-1} k^2 \\ a_n - a_1 & = \frac {n(n-1)(2n-1)}6 \\ \implies a_n & = \frac {n(n-1)(2n-1)}6 + 1 \\ a_7 & = \frac {7\cdot 6 \cdot 13}6 + 1 = \boxed{92} \end{aligned}

Why k N k \in \mathbb { N } ?

. . - 3 weeks, 4 days ago

Log in to reply

For summation \display k = ? n \display \sum_{k=?}^n , k k and n n are always integers.

Chew-Seong Cheong - 3 weeks, 4 days ago
Hala Daramer
Apr 13, 2018

92 FIRST TIME, we added 1 squared NEXT TIME, we added 2 squared and so on....

. .
May 17, 2021
Giorgos K.
Apr 13, 2018

formula: ( n + 2 ) ( 2 n 2 n + 3 ) / 6 (n+2)*(2*n^2-n+3)/6

or you can accumulate squares: here is the M a t h e m a t i c a Mathematica code

1+Accumulate[Range@10^2]

which returns 2 , 6 , 15 , 31 , 56 , 92 , 141 , 205 , 286 , 386... 2, 6, 15, 31, 56, 92, 141, 205, 286, 386...

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...