161k views
4 votes
Help please!!


Define the following sequence recursively
11,33,55,77

1 Answer

1 vote

Answer:

Explanation:

Recursive sequences generally look like this:

a1 = something

an= ahhhhhh

The 1st term in this sequence is 11.

So we have

a1=11

And now we see that each term is adding by 22.

We have,

a1=11


a_(n) =a_(n-1)+22

User Irfan Wani
by
3.8k points