Can anyone confirm whether my answer is correct, please.
Let's suppose we have the following fibonacci numbers as shown: $f(0) = 0, f(1) = 1$, and $f(n) = f(n-1) + f(n-2)$ for $n \geq 2$. Prove that for each $n \geq 0, f(4n)$ is a multiple of $3$
$f_0 = 0,f_1= 1,f_n = f_{n-1}+f_{n-2} \text{ for } n \geq 2$ Prove that for each $n \geq 0, f_{4n}$ is a multiple of $3$.
My solution to this question:
\begin{align} f_{4(k+1)} & = f_{4k+4} \\ & = f_{4k+3} + f_{4k+2} \\ & = f_{4k+3} + (f_{4k+1} + f_{4k}) \\ & = (f_{4k+2} + f_{4k+1}) + (f_{4k+1} + f_{4k}) \\ & = f_{4k+1} + f_{4k} + f_{4k+1} + f_{4k+1} + f_{4k} \\ & = 3(f_{4k+1}) + 2(f_{4k}) \end{align}
Calculating $f(n)$ mod $3$ up to $n = 9$ gives
This shows