0

Show that there exists a Fibonacci number that is divisible by 2014.i s this as simple as showing an nth F(n) is divisible by 2? A prime factor of 2014 . Some reason tonight my math faculties only at 40% :)

Randin
  • 802

1 Answers1

4

$F(0)=0$ is a multiple of $2014$.


Suppose we exclude $0$, it is still true. Lets take the first two values $n<m$ such that $F(n)\equiv F(m)\bmod 2014$ and $F(n+1)\equiv F(m+1)\bmod 2014$ (they must exist since there are only $2014^2$ options for $(F(n),F(n+1))\bmod 2014$ ).

We must have $n=0$, otherwise notice $F(n-1)\equiv F(n+1)-F(n)\equiv F(m+1)-F(m)\equiv F(m-1)$, contradicting the minimality of $n$.

Therefore $F(m)\equiv F(0)\equiv 0\bmod 2014$. We are done.

Asinomás
  • 105,651