A recursive function is shown below:
f(1) = 5 and f(n) = f(n - 1) - 6; n > 1

Which of the following lists the terms in the sequence defined by this recursive function

A: 5, 11, 17, 23, 29, ...

B: 5, -11, -17, -23, -29, ...

C: 5, -1, -7, -13, -19, ...

D: 5, 1, 7, 13, 19, ...