I'm doing a high school level question and one of the questions is figuring out which of the Fibonacci sequence numbers must be even. The 61st, 62nd, 63rd, 64th, or 65th. And the only information I'm given is how the sequence is defined recursively.
Apart from using my calculator and testing out each number, I'm not sure how I'm supposed to solve this without using college-level mathematics. (Btw, I'm allowed a calculator so maybe the question is just testing your ability to use it)
$f_1=f_2=1$ and $$ f_n=f_{n-1}+f_{n-2} $$ for all $n > 2$
Note that an odd number plus an even number is odd and an odd plus an odd number is even.
So think of $a_1=a_2=\text{even}$ then $$ a_n=a_{n-1}+a_{n-2} $$
So you have $a_3=\text{odd}+\text{odd}=\text{even}$ and hence
$a_4=\text{even}+\text{odd}=\text{odd}$ and
$a_5=\text{even}+\text{odd}=\text{odd}$
Then it starts back over at $a_6=\text{odd}+\text{odd}$. So every multiple of $3$ will have $a_{3k}$ even. You can of course prove it, but I'm not entirely sure what constitutes high school math for you :)