The recursive form of an arithmetic sequence is:
an = an-1 + d
So for a1 = 1 and d = 5:
a2 = a1 + 5 = 1 + 5 = 6
a3 = a2 + 5 = 6 + 5 = 11
a4 = a3 + 5 = 11 + 5 = 16
a5 = _____?
Each term above is 5 more than the preceding term. In general, we can write explicit form of the sequence as:
an = a1 + (n-1)*d
So for a1 = 1 and d = 5:
a5 = 1 + (5-1)*5 = _____?