hird row, and
23 seats in the fourth row.
If the number of seats in each row follows the pattern described above, which recursive function defines the number of seats in the nth row?
A. f(1) = 11
f(n) = 4.f(n - 1), for n > 2
B. f(1) = 4
f(n) = f(n - 1) + 11, for n > 2
C. f(1) = 11
f(n) = f(n − 1) + 4, for n > 2
D.
f(1) = 4
f(n) = 11. f(n − 1), for n > 2