[Math] Nth term of series with distinct difference

sequences-and-series

I am learning some series as a naive and I came across this series where I want to find the nth term.

2, 6, 14, 30, 62, … and so on.

I am facing difficulties as the difference between elements is formed as

4, 8, 16, 32,….

Is it possible to find nth term for this series?

Best Answer

$$U_2-U_1=2^2$$

$$U_3-U_2=2^3$$

$$U_4-U_3=2^4$$

So by proceeding in this manner we get that, $$U_n-U_{n-1}=2^n$$

Now by adding these equations we get

$U_n-U_1= 2^2+2^3+2^4+.....+2^{n-1}+2^n \Rightarrow U_n=U_1+2^2+2^3+2^4+.....+2^{n-1}+2^n$

$U_n=2^1+2^2+2^3+2^4+.....+2^{n-1}+2^n$

Therefore $$U_n=\sum_{k=1}^{n}2^k$$

$$U_n=\frac{2^{n+1}-2}{2-1}$$

$$U_n=2^{n+1}-2$$

Related Question