I want to prove this statement for $\forall n\in \mathbb{N}\space $by induction:
$$\sum_{k=1}^{2^n} \frac{1}{k}\ge 1+\frac{n}{2}$$
Step 1: $n=1$
$$\implies1+\frac{1}{2}\le1+\frac{1}{2} \checkmark$$
Step 2: Assume the inequality holds for some $m$. Show that it holds for $m+1$
$$\implies \sum_{k=1}^{2^{m+1}} \frac{1}{k} \ge 1+\frac{m+1}{2} \\ \iff \color{blue}{\sum_{k=1}^{2^m}\frac{1}{k}}+\frac{1}{2^{m+1}} \ge \color{blue}{1+\frac{m}{2}}+ \frac{1}{2}$$
I assumed the inequalitie holds for $m$ (the blue part). To show that it holds for $m+1$ I have to show that $$\frac{1}{2^{m+1}} \ge \frac{1}{2}$$ However, this statement is false for all $m>1$. What am I doing wrong?