Answer:
A. 5
Explanation:
I assume the definitions are
an = 12 + (n-1)×5
an = an-1 + blank
if this is correct, then we have
a1 = 12
a2 = 12 + 5 = 17 = a1 + 5
a3 = 12 + 2×5 = 22 = a2 + 5
a4 = 12 + 3×5 = 27 = a3 + 5
...
we see, for an we need to add (n-1) times the number 5 to the initial a1 value.
so every new sequence number is larger by 5 than the previous one.
hence the answer.