Given the sequence 5, 7, 9, 11, 13, ...
(a)
Find the next three terms.
Looking at the difference between the terms, we see that they are all 2. So this is a linear sequence with common difference 2
So the next three terms are
13 + 2 = 15
15 + 2 = 17
17 + 2 = 19
15, 17, 19
(b)
Find a formula for the nth term.
In part (a) we established that the common difference is 2. So d = 2
nth term = 2n + b
The first term is 5. Substitute this and n = 1 into the formula, and solve for b
5 = 2×1 + b
5 = 2 + b
b = 3
Now we can write the nth term
2n + 3