$$f(n) = \begin{cases} 1 & \text{when } n = 1 \\ 1 & \text{when } n = 2 \\ f(n-1) + f(n-2) & \text{when } n \geq 3 . \end{cases} $$ For any natural number $j$, show that the Fibonacci number $f(5j)$ is divisible by $5$, using mathematical induction.
So all I have is that I should probably just use $f(5j)$ and $f(5j +1)$ to get $f(5j + 5)$?
Look at the fibonnaci numbers mod $5$. We get $$\begin{array}{c|c} n & f(n) \mod 5 \\ \hline 1 & 1\\ 2 & 1 \\ 3& 2 \\ 4 & 3 \\ 5 & 0 \\ 6 & 3 \\ 7 & 3 \\ 8 & 1 \\ 9 & 4 \\ 10 & 0 \end{array}$$
Thus we see the pattern that for $f(5j + 1) \equiv f(5 j + 2) \mod 5$, $f(5j + 3) + f(5j + 4) \equiv 0 \mod 5$ and $f(5j) \equiv 0 \mod 5$. This is easy to prove using induction.