
David W. answered 03/19/20
Experienced Prof
A recursive sequence has a (1) base case of one or more elements, and a (2) recursive case for all other elements. The recursive case elements depend on previous elements to determine their value.
x+y
3x+4y
5x+7y
7x+10y
. . .
The recursive definition is:
…
a1 = x + y
an = an-1 + 2x + 3y [ for n> 1