We have defined (in class) the Lucas number by $L_n = F_{n-1} + F_{n+1}$, where $F_i$ is the $i + 1$th Fibonacci number ($F_0 = 0, F_1 = 1$).
I have to prove that if $2 \mid n$ and $3\not\mid n$, then $L_n$ has a prime factor congruent to $3 \mod 4$. I have absolutely no idea on how to start this: I first thought about using induction, but I have no idea in this case how to prove my induction step, since I don't see how to write $L_n$ in function of some $L_k$'s on which I can use my induction hypothesis.
A second thought was that I could prove the contraposition, so assuming all possible prime factors are congruent with $2 \mod 4$ or $1 \mod 4$. However, in this case I am stuck on how to link this to the number $n$ and its divisors.
Any hints would be appreciated.