Show $\sum_{k = 1}^n (k+1)2^k = n2^{n+1}$ by mathematical induction.
I made my base case $n = 1$. So $(1+1)*2^1 = 1(2^1+1)$ and $4 = 4$, which is true.
My inductive hypothesis is assuming $n = m$, the summation between $k = 1$ to $ m$ of $(k+1)*(2^k) = (m)*2^{m+1}$.
I need to show that $n = m + 1$ is true. So I did the summation $k = 1$ to $m + 1$ of $(k+1)*(2^k) = (m+1)*2^{(m+1)+1}$. But, I am unsure of how to proceed from here.