Question 67569
For the first problem, we can say we are dividing by powers of two. Therefore, the following is acceptable (although not very pretty)

{{{sum(1/(2^k), k=1, n)}}}

The second problem is easier as we are just summing the powers of two. Therefore:

{{{sum( 2^(k-1), k=1, n )}}}