Which recursive formula can be used to generate the sequence below, where f(1) = 6 and n ≥ 1? 6, 1, –4, –9, –14, … f (n 1) = f(n) 5 f (n 1) = f(n) – 5 f (n) = f(n 1 ) – 5 f (n 1) = –5f(n)

Respuesta :

The recursive formula is f(n+1)= f(n)-5.

What is recursive function?

Given sequence :

f(1)= 6, n≥1.

Let f(n) denote the nth term of the given sequence.

f(1)= 6

f(2)= 1 = f(1)-5

f(3)= -4 = 1-5= f(2) -5

f(4)= -9 = 1-10 = f(2)-10

and so on

Hence, the recursive formula is f(n+1)= f(n)-5.

Learn more about this concept here:

https://brainly.com/question/13210754

#SPJ1