A function f is defined recursively by f(1)=3, f(2)=4 and f(n)=f(n−1)−f(n−2)+5 for all integers n≥3. What is f(2024)?
3
4
5
6
7