The "Fib function" , , returns the corresponding Fibonacci number :
, , , , , , , , , ... and so on.
The "SumFib function" , , returns the corresponding cumulative sum of Fibonacci numbers:
, , , , , , , , , ... and so on.
Question : Aside from the first three distinct values of each function, { }, are there any other shared values (or outputs) of both of these functions?
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.
If we advance the recursive relation for Fibonacci numbers , F ( n ) = F ( n − 2 ) + F ( n − 1 ) , by 2 places, we get F ( n + 2 ) = F ( n + 1 ) + F ( n ) .
Rearranging these terms gives us a modified recursive relation, F ( n ) = F ( n + 2 ) − F ( n + 1 ) .
Summing these: (Note: I've written F ( n ) as F ( n − 0 ) to simplify the formatting)
F ( n − 0 ) = F ( n + 2 ) − F ( n + 1 )
+
F ( n − 1 ) = F ( n + 1 ) − F ( n − 0 )
+
F ( n − 1 ) = F ( n − 0 ) − F ( n − 1 )
+
F ( n − 1 ) = F ( n − 1 ) − F ( n − 2 )
+
.
.
.
+
F ( 0 ) = F ( 2 ) − F ( 1 )
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ (notice that the "over-lined" terms cancel out the underlined terms)
S ( n ) = F ( n + 2 ) − 1
.
Since S ( n ) = F ( n + 2 ) − 1 , then for all n > 2 , the summation S ( n ) can't equal a Fibonacci number.