9.6k views
5 votes
Write down the first 6 elements of the following sequence (where n ∈ Z+), then give a recursive definition for an. Do not forget the base case. (You do not need to prove it is correct).

a. an - 3n - 10
b. an= (1+(-1)^n)^n
c. an= 2n! (2)

User Aaguilera
by
4.8k points

2 Answers

4 votes

Final answer:

The first 6 elements of the given sequences are provided, along with their recursive definitions.

Step-by-step explanation:

For the sequence given by (a) an = -3n - 10, the first 6 elements are:

a1 = -13, a2 = -16, a3 = -19, a4 = -22, a5 = -25, a6 = -28

The recursive definition for this sequence is:

a1 = -13

an = an-1 - 3, for n > 1

For the sequence given by (b) an = (1+(-1)^n)^n, the first 6 elements are:

a1 = 0, a2 = 4, a3 = 0, a4 = 16, a5 = 0, a6 = 64

The recursive definition for this sequence is:

a1 = 0

an = (1+(-1)^n)^n, for n > 1

For the sequence given by (c) an = 2n!(2), the first 6 elements are:

a1 = 4, a2 = 16, a3 = 48, a4 = 128, a5 = 320, a6 = 768

The recursive definition for this sequence is:

a1 = 4

an = 2n!(2), for n > 1

User Conandor
by
5.1k points
5 votes

Answer:

a. The first six terms are:

-7, -4, -1, 2, 5, 8

b. The first six terms are:

0, 2, 0, 2, 0, 2.

c. The first six terms are:

4, 8, 24, 96, 480, 2880

Step-by-step explanation:

a. an - 3n - 10

For n = 1

a1 = 3(1) - 10

= -7

For n = 2

a2 = 3(2) - 10

= -4

For n = 3

a3 = 3(3) - 10

= -1

For n = 4

a4 = 3(4) - 10

= 2

For n = 5

a5 = 3(5) - 10

= 5

For n = 6

a6 = 3(6) - 10

= 8

The first six terms are:

-7, -4, -1, 2, 5, 8

b. an= (1+(-1)^n)^n

For n = 1

a1 = (1+(-1)^1)^1

= 0

For n = 2

a2 = (1+(-1)^2)^1

= 2

For n = 3

a3 = (1+(-1)^3)^1

= 0

For n = 4

a4 = (1+(-1)^4)^1

= 2

For n = 5

a5 = (1+(-1)^5)^1

= 0

For n = 6

a6 = (1+(-1)^6)^1

= 2

The first six terms are:

0, 2, 0, 2, 0, 2.

c. an= 2n! (2)

For n = 1

a1 = 2(1!)(2)

= 4

For n = 2

a2 = 2(2!)(2)

= 8

For n = 3

a3 = 2(3!)(2)

= 24

For n = 4

a4 = 2(4!)(2)

= 96

For n = 5

a5 = 2(5!)(2)

= 480

For n = 6

a6 = 2(6!)(2)

= 2880

The first six terms are:

4, 8, 24, 96, 480, 2880

User Entropo
by
5.0k points