I know the formula is: $n(h) = n(h-1) + n(h-2) + 1$
And I know it can be reduced as:
\begin{align} n(h) & = n(h-1) + n(h-2) + 1 \\[6pt] & \geq n(h-2) + n(h-2) + 1 \\[6pt] & \geq 2n(h-2) + 1 \\[6pt] & \geq 2n(h-2) \end{align}
After this step I don't understand the recurrence that would come after here. I was reading a proof online and they did this:
\begin{align} & \geq2n(h-2) \\[6pt] & \geq 2(2n(h-4)) \\[6pt] & \geq2(2(2n(h-6))) \end{align}
I'm not understanding that block. Why is each step multiplied by 2 and why is 2 more subtracted each time from the height? I'm having trouble visualizing it or something. Then the proof shows:
$$\geq2^in(h-2i)$$
I understand how they got that answer based on the pattern, and I can solve the rest of the proof, but I don't understand how that recursive pattern was chosen. I hope I'm making sense. If anyone can clarify this for me, I would appreciate it very much!