Let p(n) be the mathematical statement: $2^n \leq 2^{n+1} - 2^{n-1} - 1$.
Base Case: When n = 1 we have $2^1 \leq 2^{1+1} - 2^{1-1} - 1$ which simplifies to $2 \leq 4$. So P(1) is correct.
Induction hypothesis: Assume that P(k) is correct for some integer k.
Induction step: We will now show that P(k + 1) is correct.
\begin{align} 2^{k+1} &= 2\cdot 2^{k}\tag{by definition}\\[0.5em] &\leq 2\cdot(2^{k+1}-2^{k-1}-1)\tag{by inductive hypothesis}\\[0.5em] &= 2^{k+2}-2^k-2\tag{expand}\\[0.5em] &\leq 2^{k+2}-2^k-1. \end{align}
Is this proof sufficient?