Select the function that defines the given sequence
-11, -8, -5,-2,-1,...

A. F(1)= -11
F(n) = f(n - 1) - 3; for n = 2,3,4,...

B. F(1) = -11
F(n) = f(n-1) + 3; for n = 2,3,4...

C. F(1) = -11
F(n) f(n+1) -3; for n = 2,3,4,...

D. F(1) = -11
F(n) = f(n+1) + 3; for n = 2,3,4...