sum up to nth term with fraction in the power

1.8k Views Asked by At

Is there a formula to express the sum up to the nth term of this:

$$ 2^{(1/10)}+2^{(2/10)}+2^{(3/10)}+...+2^{(n/10)}? $$

I am not a mathematician and use computing algorithm but I am looking for a simplification of my algorithms..

3

There are 3 best solutions below

0
On BEST ANSWER

In general, when $a\ne 1$, $$ a^1+a^2+\cdots+a^n=\frac{a^{n+1}-a}{a-1}, $$ and hence $$ 2^{1/10}+2^{2/10}+\cdots+2^{n/10}=\frac{2^{(n+1)/10}-2^{1/10}}{2^{1/10}-1}. $$

0
On

Just rewrite as $\sum_{k=1}^{n} (2^{1/10})^k $ and use the usual geometric series formula.

0
On

Let $2^{1/10} = x$ then you are summing $$ x + x^2 + x^3 + \ldots + x^n = x \frac{x^n-1}{x-1} $$