The factorial sequence is a sequence of numbers in which each number is the product of all positive integers less than or equal to that number. For example, the factorial of a number denoted as \( n! \) is calculated as \( n! = n \times (n-1) \times (n-2) \times \ldots \times 2 \times 1 \).
This concept is central to many areas of mathematics, particularly in combinatorics, as it describes the total arrangements of a set of items.
In our problem, we are asked to find each term of a recursively defined sequence, and we discovered that each term is indeed a factorial. Here, the first term is \( a_1 = 1 \). Each subsequent term is formed by multiplying the current index with the previous term, which matches the pattern of calculating a factorial.
- Starting with \( a_1 = 1 \)
- Continuing with \( a_2 = 2 \times 1 = 2 \)
- Then \( a_3 = 3 \times 2 = 6 \), and so on
This led us to conclude that \( a_n = n! \) for each term.