Now define t to be the sum of the first n powers of two.

Click here for answer

t[0] == 1

t[n] = 2^n + t[n-1]