$$\begin{align}T(n) &= 2 \cdot T(n-1) + 1\\ &= 2^2\cdot T(n-2)+2+1\\ &= 2^3\cdot T(n-3)+2^2+2+1\\ &= 2^4\cdot T(n-4)+2^3+2^2+2^1+2^0\end{align}$$
general form: $2^n\cdot T(0) + 2^{(n-1)} + 2^{(n-2)}\cdots +1$
Is this correct? Also, my friend said the general form has big Theta of $(2^n)$. Cans someone please explain why without advanced math (in layman's terms because I am slow.) THankyou very much!!!