The following function defines a recessive sequence:
 f(0) = -4
f(1) = 12

f(n) = -3•f(n -1) - 2•f(n - 2); for n > 1

Which of the following sequences is defined by this recursive function?
A) -4, 12, -28, 60, …
B) -4, -12, -28, -60, …
C) -4, 12, -18, 54, …
D) -4, 12, -18, -54, …