A Fibonacci Sum

A sequence { a i } i = 1 n \{a_i\}_{i=1}^n has the property that S n = F n S_n=F_n where S n = i = 1 n a i S_n=\displaystyle\sum^n_{i=1}a_i , F 1 = 1 F_1=1 , F 2 = 1 F_2=1 , and F n = F n 1 + F n 2 F_n=F_{n-1}+F_{n-2} . The closed form of i = 1 n a 2 i 1 \displaystyle\sum^n_{i=1}a_{2i-1} can be represented as S f ( n ) + c S_{f(n)}+c where f ( n ) f(n) is a function of n n and c c is a constant. Find the last three digits of f ( 2013 ) + c f(2013)+c .


The answer is 25.

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.

2 solutions

Lee Gao
Dec 31, 2013

Consider the criterion that k = 1 n a k = F n \sum_{k=1}^n a_k = F_n , then inductively, it better be the case that F n + 1 = F n + a n + 1 a n + 1 = F n 1 F_{n+1} = F_n + a_{n+1} \implies a_{n+1} = F_{n-1} from the definition of F n + 1 F_{n+1} . This suggests that for n > 2 n > 2 , we can just set a n = F n 2 a_n = F_{n-2} (because this is when the recurrence hold); furthermore, we also need to set a 1 = F 1 a_1 = F_1 , which leaves exactly one way to set a 2 = 0 a_2 = 0 . Of course, if we use the extended fibonacci sequence, then we can see that a n = F n 2 a_n = F_{n-2} .

Now, let's look at the summation: k = 1 n a 2 k 1 = a 1 + a 3 + + a 2 n 1 = a 1 + ( a 1 + a 2 ) a 3 + ( a 3 + a 4 ) a 5 + + ( a 2 n 3 + a 2 n 2 ) a 2 n 1 = a 1 + k = 1 2 n 2 a k = a 1 + F 2 n 2 \begin{aligned}\sum_{k=1}^n a_{2k-1} &= a_1 + a_3 + \cdots + a_{2n-1} \\ &= a_1 + \underbrace{(a_1 + a_2)}_{a_3} + \underbrace{(a_3 + a_4)}_{a_5} + \cdots + \underbrace{(a_{2n-3} + a_{2n-2})}_{a_{2n-1}} \\ &= a_1 + \sum_{k=1}^{2n-2} a_k \\ &= a_1 + F_{2n-2}\end{aligned}

Therefore, c = a 1 = 1 c = a_1 = 1 and f ( n ) = 2 n 2 f(n) = 2n-2 , which makes f ( 2013 ) + c = 4 025 f(2013) + c = 4\boxed{025} .

Andres Saez
Dec 28, 2013

Note that k = 1 n F 2 k 1 = F 2 n \sum_{k=1}^n F_{2k-1} = F_{2n} . We begin by noting the terms of a i a_i :

a 1 = F 1 = 1 a_1 = F_1 = 1

a 2 = F 2 a 1 = 0 a_2 = F_2 - a_1 = 0

a 3 = F 3 ( a 1 + a 2 ) = F 3 F 2 = F 1 a_3 = F_3 - (a_1 + a_2) = F_3 - F_2 = F_1

a 4 = F 4 ( a 3 + a 2 + a 1 ) = F 4 F 3 = F 2 a_4 = F_4 - (a_3+a_2+a_1) = F_4 - F_3 = F_2

Hence, a n + 2 = F n a_{n+2} = F_n . Then, we have i = 1 n a 2 i 1 = k = 1 n F 2 k 3 \sum_{i=1}^{n} a_{2i-1} = \sum_{k=1}^n F_{2k-3} . Because the Fibonacci numbers are (technically) not defined for negative arguments, we rewrite the first sum as a 1 + i = 2 n a 2 i 1 a_1 + \sum_{i=2}^n a_{2i-1} in order to rewrite the latter as 1 + k = 2 n F 2 k 3 = 1 + F 2 n 2 1 + \sum_{k=2}^n F_{2k-3} = 1 + F_{2n-2} as per the comment made at the beginning of the proof. Hence, i = 1 n a 2 i 1 = S 2 n 2 + 1 \sum_{i=1}^{n} a_{2i-1} = S_{2n-2} + 1 , and so f ( 2013 ) + 1 = 2 ( 2013 ) 2 + 1 = 4025 f(2013)+1 = 2(2013)-2 + 1 = 4025 , whose last three digits are 025 \boxed{025} .

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...