Ask Question
30 July, 22:04

Carlos wants to write a computer program that produces the sequence that can be defined by the general term tn = n!, where n ∈N and n ≥ 1. For example, t1 = 1, t2 = 2 * 1, t3 = 3 * 2 * 1, t4 = 4 * 3 * 2 * 1, and so on. Unfortunately, the computer programming language that he is using doesn't understand the factorial symbol. It only understands recursive formulas. Which recursive formula can Carlos use in his computer program to produce the sequence?

+2
Answers (1)
  1. 31 July, 00:47
    0
    an = a n-1 + d

    where d is common difference n is nth term
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “Carlos wants to write a computer program that produces the sequence that can be defined by the general term tn = n!, where n ∈N and n ≥ 1. ...” in 📙 Mathematics if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers