Prove that for every $ n \in \mathbb{N} \cup \{0\}$, $F_{n+5} + 2F_n$ is divisible by $5$, where $(F_n)_n$ is the Fibonacci sequence.
I think induction won't work here, so I wanted to use a theorem from the lectures, which states: Let $(A_n)$ and $(B_n)$ be arbitrary solutions to the recurrence equation $x_{n+1} = x_n + x_{n-1}$ on $\mathbb{N} \cup \{0\}$ (this means that for every $n \in \mathbb{N}$, $A_{n+1} = A_n + A_{n-1}$ and $B_{n+1} = B_n + B_{n-1}$. If $A_0 = B_0$ and $A_1 = B_1$ (the initial conditions are the same), then it holds that for every $n \in \mathbb{N} \cup \{0\}$, $A_n = B_n$. In other words, they are the same sequence - identical initial conditions uniquely determine the entire sequence).
So I need to somehow cleverly define $A_n$ and $B_n$ and verify the same initial conditions, but due to divisibility, I have no idea how. Thanks for the help.