Ask Question
25 August, 00:13

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?

+4
Answers (1)
  1. 25 August, 00:29
    0
    an = a n-1 + d

    where d is common difference n is nth term
Know the Answer?
Not Sure About the Answer?
Find 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 the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers