In our notation we have that $F_{n-1}$ is the $n$th Fibonacci number since we start with $F_{0}=1$.
We want to prove that every third Fibonacci number is divisible by $F_{2}=2$.
The proof is the following using induction:
$F_{3n+2}=F_{3n+1}+F_{3n}$
$F_{3n+2}=F_{3n}+F_{3n-1}+F_{3n-1}+F_{3n-2}$ (A)
$F_{3n+2}=F_{3n-1}+F_{3n-2}+F_{3n-1}+F_{3n-2}$ (B)
$F_{3n+2}=2(F_{3n-1}+F_{3n-2})$
I don't understand how you go from step (A) to step (B) can anyone explain this to me?