Base case
$n=3$ - true
Inductive Step
Assume that for every $k \geq 3$, $2^k>2k+1$ show that $P(k+1)$ holds, that is show that $2^{k+1} > 2k+3$
$2^{k+1} = 2^k*2 > (I.H) (2k+1)*2 > (k+2)*2 = 2k+4 > 2k+3$
Did I do this right? I am asking because I am not sure about $(2k+1)*2 > (k+2)*2$ step
$4k + 2 = 2k + 2 + 2k$. $k \geq 3 \implies 2k \geq 6 > 2$ so you're right.