From a recent solution I posted here, working from an alternative path would have led to the following recurrence relation which involves a summation term:
$$T_n=\sum_{r=0}^{n-1}T_r+2^n; \qquad T_0=1\qquad (n>1)$$ How can this be solved?
Edit 3 (replaces previous edits) Initial condition is $T_0=1$. For the problem as stated, $T_1=3$ (not $4$) and does not need to be specified as an initial condition. This is actually different from the previous problem, which would have resulted in $T_n=\sum_{r=0}^{n-1}+2^{n+1}-1$.
For clarification
For the previous problem that I referred to here, the recurrence relatioships, the first two terms, and the closed form solution are as follows: $$T_n=2T_{n-1}+\color{blue}{2^n}\\ T_n=\sum_{r=0}^{n-1}T_r+\color{blue}{2^{n+1}-1}\\ T_0=1, T_1=\color{blue}4\\ T_n=(\color{blue}n+1)2^n$$
For the present problem as posted here, the recurrence relatioships, the first two terms, and the closed form solution are as follows: $$T_n=2T_{n-1}+\color{red}{2^{n-1}}\\ T_n=\sum_{r=0}^{n-1}T_r+\color{red}{2^n}\\ T_0=1, T_1=\color{red}3\\ T_n=(\color{red}{\frac n2}+1)2^n$$
We have $$T_{n+1}-T_{n}=\left(\sum_{r=0}^{n}T_r+2^{n+1}\right)-\left(\sum_{r=0}^{n-1}T_r+2^n\right)=T_n+2^{n+1}-2^n,$$ i.e. $$T_{n+1}=2T_n+2^n$$ for $n\ge 2$. Dividing the both sides by $2^{n+1}$ gives $$\frac{T_{n+1}}{2^{n+1}}=\frac{T_n}{2^n}+\frac 12,$$ i.e. $$U_{n+1}=U_n+\frac 12\quad\quad (n\ge 2)$$ where $U_n=\frac{T_n}{2^n}$ which should be easy to deal with.