$T(0)=1 \\ T(n) = 1 + \sum_{j=0}^{n-1}T(j) \\ $
Show that $T(n) = 2^n$.
I know how to prove this by induction, but I would like to know how to show this using first principles.
Edit: The way I want to solve this problem is manipulate $T(n)$ in such a way that it ends up as $2^n$.