So far, I tried proving that F(n) is even if 3 divides n. My steps so far are:
Consider:
F(1) ≡ 1(mod 2)
F(2) ≡ 1(mod 2)
F(3) ≡ 0(mod 2)
F(4) ≡ 1(mod 2)
F(5) ≡ 1(mod 2)
F(6) ≡ 0(mod 2)
Assume there exists a natural number k such that 3 divides k and F(k) is even. Let k = 3. Then k+3 = 6. So F(6) = F(5) + F(4) ≡ 1(mod 2) + 1(mod 2) = 0(mod 2). Therefore k+3 is even.
How do I go about proving the other way on the biconditional?