For the recurrence defined by
$$T(n) = 1 +\sum_{i=0}^{n-1}T(i)$$
Apparently $T(n) = 2^n$ .. but I cannot see it. This recurrence pops up during analysis of the Rod Cutting Problem. I keep looking to find a viewpoint to look at this problem where the factors of 2 pop out ..
Setting $n=m+1,m$
$$T(m+1) = 1 +\sum_{i=0}^mT(i)$$
$$T(m) = 1 +\sum_{i=0}^{m-1}T(i)$$
On Subtraction,
$$T(m+1)-T(m)=T(m)\iff T(m+1)=?$$