Find the next term of the given sequence.
__
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.
How to get to the solution?
One of the first things I did was to look at the ratios of successive terms. Letting ( ( a n ) ) denote the sequence, I saw
a 1 a 2 ≈ 3 ,
a 2 a 3 ≈ 4 , ...
a 5 a 6 ≈ 7 .
So this thing is growing super-exponentially. But the ratio of successive terms is growing almost linearly.
Next idea is to consider the differences ( a n − ( n + 1 ) a n − 1 ) to see how close this idea is:
a 2 − 3 a 1 = 4 ,
a 3 − 4 a 2 = 5 ,
a 4 − 5 a 2 = 6 , etc.
This suggests the recursive formula a n = ( n + 1 ) a n − 1 + ( n + 2 ) , initialized with a 1 = 1 5 . This relation works for all six numbers given.
In particular, if we extend this to n = 7 :
a 7 = 8 a 6 + 9 = 8 ∗ 4 2 5 1 9 + 9 = 3 4 0 1 6 1