How can I find the first 5 numbers of a the sequence knowing that A(n)= 1 and A(n+1)= 4A(n)-2 ?

Sorry if the formulas aren't very clear but everything that is between parentheses is supposed to be in subscript but I can't seem to find how to do it on this website. Thank you in advance

1 Answer
Jul 30, 2018

Below

Explanation:

An=1
An+1=4An2

Therefore, if you want the first 5 numbers, then you want to find A1,A2,A3,A4andA5

A1=1

A2=4A12
A2=4×12
A2=2

A3=4A22
A3=4×22
A3=6

A4=4A32
A4=4×62
A4=22

A5=4A42
A5=4×222
A5=86