In a section of a baseball stadium, there are 11 seats in the first row. There are 15 seats in the second row, 19 seats in the third 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