We want to write a for the given sequence. To do that, we first need to identify whether the given sequence is , , or neither. To do so we will calculate the and between consecutive .
We can see above that neither the ratios nor the differences are the same. Therefore, the sequence is
neither geometric nor arithmetic, so we have to look for another pattern. To do so we need to consider how the consecutive terms are related. Let's take a look at the differences between pairs of consecutive terms.
a2−a1a3−a2a4−a3a5−a4⋮====-1−(-3)2−(-1)6−211−6⋮====2345⋮
1111an−an−1=n1111
|
We can see above that the difference between the consecutive terms equals
n. Therefore, to obtain the value of the term in the
nth position, we need to
add n to the previous term
an−1. With this information and knowing that the first term equals
-3 we can write the recursive formula.
a1=-3,an=n+an−1