There was a question in a mental math test and it expected me to calculate the first 9 terms of the following Fibonacci sequence (Note that this is how the problem was exactly given.):
The sum of the first nine terms of the Fibonacci sequence 4,7,11,18,29... is
How could I have done this in under 15 seconds? I know that if there are n terms, then $2F_n+F_{n-1}=$ Sum of $n$ Fibonacci numbers. But even this is too tedious for me.
Fibonacci sequence follows the recurrence relation: $$F_{n+1}=F_{n}+F_{n-1}$$ And this can be re-arranged as $$F_{n-1}=F_{n+1}-F_{n}$$
Now using this, your sum will become a telescopic series. See if you can complete it now.
UPDATE: As mentioned by MonsieurGalois, it turns out to be $F_{11}-F_2$.
ADDENDUM: In general, it must be kept in mind (for a generalised expression) that the sum of the first $n $ terms of the Fibonacci sequence gives the sum as $F_{n+2}-F_2$.