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$$