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
5.8k points