3. Write a recursive definition for the sequence below. (1 point) -1,4,9,14,...

AAAaannndd the bot gets it wrong yet again!

a_1 = -1
a_n+1 = a_n + 5

A recursive definition for the sequence is an(n) = 4n - 5.