A super fibonacci is a list of whole number that every term is the sum of all of the previous terms. For example, 1, 2, 3, 6, 12, 24...
How many super fibonacci list start with 1 involve the number 2016?
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.
A super-Fibonacci sequence is determined entirely by its first two terms, 1 and x , say. The sequence then proceeds as
1 , x , ( 1 + x ) , 2 ( 1 + x ) , 4 ( 1 + x ) , 8 ( 1 + x ) , … .
Since adding all previous terms amounts to doubling the last term, all terms from the third onwards are of the form 2 k ( 1 + x ) , for some k ≥ 0 . If 2 0 1 6 = 2 5 × 6 3 were one of these terms, then k will be one of the 6 values k = 0 , … , 5 , giving 6 possible values for x . These are x = 6 2 , 1 2 5 , 2 5 1 , 5 0 3 , 1 0 0 7 , 2 0 1 5 . There is also the possibility that x = 2 0 1 6 , so there are 7 such sequences in total.
This problem was number 25 on the Intermediate Division for the 2016 Australian Mathematics Competition.