What is the sum of the following sequence
$$\begin{align*} (2^1 - 1) &+ \Big((2^1 - 1) + (2^2 - 1)\Big)\\ &+ \Big((2^1 - 1) + (2^2 - 1) + (2^3 - 1) \Big)+\ldots\\ &+\Big( (2^1 - 1)+(2^2 - 1)+(2^3 - 1)+\ldots+(2^n - 1)\Big) \end{align*}$$
I tried to solve this. I reduced the equation into the following equation
$$n(2^1) + (n-1)\cdot2^2 + (n-2)\cdot2^3 +\ldots$$
but im not able to solve it further. Can any one help me solve this equation out. and btw its not a Home work problem. This equation is derived from some puzzle.
Thanks in advance
We have $$\begin{align} \sum_{i=1}^n\sum_{j=1}^i(2^j-1) &=\sum_{i=1}^n\sum_{j=1}^i2^j-\sum_{i=1}^n\sum_{j=1}^i1\\ &=\sum_{i=1}^n(2^{i+1}-2)-\sum_{i=1}^ni\\ &=2\sum_{i=1}^n2^{i}-\sum_{i=1}^n2-\sum_{i=1}^ni\\ &=2(2^{n+1}-2)-2n-\frac12n(n+1)\\ &=2^{n+2}-4-\frac52n-\frac12n^2\\ \end{align} $$