All topics

s4.3.1

Adding Consecutive Terms of Arbitrary Fibonacci Sequence, Method 1

1,000 questions

This method for summing consecutive terms of an Arbitrary Fibonacci Sequence uses a telescoping series. The sum of the first nn terms of a sequence starting with A1,A2,...A_1, A_2, ... is given by the formula:

Sum = An+2A2A_{n+2} - A_2

To use this, you must find the (n+2)th(n+2)^{th} term in the sequence. For example, to sum the first 7 terms of 4, 7, 11, ..., you would need to calculate up to the 9th term (A9A_9). If A7=76A_7=76 and A8=123A_8=123, then A9=199A_9=199. The sum is A9A2=1997=192A_9 - A_2 = 199 - 7 = 192. This method is best when most of the sequence is already provided in the problem.

Practise this