Problems

Age
Difficulty
Found: 11

Among the first 20 Fibonacci numbers: F0=0,F1=1,F2=1,F3=2,F4=3,...,F20=6765 find all numbers whose digit-sum is equal to their index. For example, F1=1 fits the description, but F20=6765 does not, since 6+7+6+520.

Among the first 20 Fibonacci numbers: F0=0,F1=1,F2=1,F3=2,F4=3,...,F20=6765 check whether the numbers with prime index are prime. The index is another name for a number’s place in the sequence.

Consider Pascal’s triangle: it starts with 1, then each entry in the triangle is the sum of the two numbers above it. Prove that the diagonals of Pascal’s triangle add up to Fibonacci numbers.

image

Prove for any integers m,n0 that Fm+n=Fm1Fn+FmFn+1.
Corollary: if kn, then FkFn. This can be proven by induction if we write n=sk for a natural s, then Fk+(s1)k=Fk1F(s1)k+FkF(s1)k+1.

Denote by gcd(m,n) the greatest common divisor of numbers m,n, namely the largest possible d which divides both n and m. Prove for any m,n that gcd(Fn,Fm)=Fgcd(m,n).

What’s the sum of the Fibonacci numbers F0+F1+F2+...+Fn?

Let n be a positive integer. Can n777 ever be a Fibonacci number?