I am trying to complete an induction proof on this problem, but cannot figure out the final steps. I understand the logic behind what makes this theorem true, and will explain it here before I dive into what I have written so far for the proof.
For example, take $2^4$. To check if this is a deficient number, we look at the sum of it's divisors, which are $2^0 + 2^1 + 2^2 + 2^3$.
$2^4 = 16$ and $2^0 + 2^1 + 2^2 + 2^3 = 15$. Since $16 > 15$, we can say that $2^4$ is a deficient number.
This can be generalized to $2^n > \sum_{i = 0}^{n-1} 2^{i}$
For my proof so far, this is what I have:
Proof (by induction): Let $n$ be any positive integer, where we need to show $2^n$ is deficient. Also let the sum of the divisors of $2^n$ equal $2^0 + 2^1 + ... + 2^{n-1}$. We can say that $2^n$ is deficient if it is greater than the sum of it's divisors. For the base case, let $n = 1$. Then, $2^n = 2$, and the sum of the divisors is equal to $2^0$. Since $2^1 > 2^0$, the theorem holds true for this case.
Next, we want to find if the theorem holds for $n + 1$. Therefore: ... This is where I need help
I want to try and use $2^{n+1} > \sum_{i = 0}^{n} 2^{i}$ in some way, but don't know how as it has been a while since I've worked on proofs. Any help or alternative ideas would be greatly appreciated!