14.6k views
2 votes
D(1)=1,d(n)=n•d(n-1) what is the sequence

1 Answer

5 votes

Final answer:

The given sequence is 1, 2, 6, 24, 120, ...

Step-by-step explanation:

The given sequence can be defined recursively as follows:

  1. d(1) = 1
  2. d(n) = n * d(n-1)

Starting with d(1) = 1, we can calculate the rest of the terms step-by-step:

  1. d(2) = 2 * d(1) = 2 * 1 = 2
  2. d(3) = 3 * d(2) = 3 * 2 = 6
  3. d(4) = 4 * d(3) = 4 * 6 = 24
  4. d(5) = 5 * d(4) = 5 * 24 = 120

Therefore, the sequence is 1, 2, 6, 24, 120, ...

User Rahul Iyer
by
7.7k points

No related questions found

Welcome to QAmmunity.org, where you can ask questions and receive answers from other members of our community.