Let $g(n)$ be defined by $g(1) = 0,g(2) = 1, g(n+2) = g(n)+g(n+1)+1$. Prove that if the Fibonacci sequence is defined by $F_n = F_{n-1}+F_{n-2}$ where $F_1 = 1, F_2 = 1$, then $F(n+1) = g(n)+1$ for $n \geq 1$.
I was thinking about proving this using induction, but I was wondering if there was an easier way to make sense of it.