David W. answered 07/09/15
Tutor
4.7
(90)
Experienced Prof
The sequence begins with a1=2. The terms are described as an, where n is the nth tern. That is, a1 is the first term and a4 is the fourth term.
To find the second term, the first term is used in the formula an+1 = -4an + 2. So, a2 = -4(2) + 2 = -6.
Third term: a3 = -4(-6) + 2 = 26
Fourth term: a4 = -4(26) + 2 = -102
Special note: Many mathematicians, engineers, computer scientists, etc. use a0 as the first term in a sequence, the first element to be summed, the first element in an array, etc -- others use 1 as the index of the first element. This problem gives a1 as a constant (and not with the recursive formula definition), so the author of this problem is starting with an index of 1.