Ask a New Question
Search
Simplify the Factorial Expression.
(3n+1)!*3!/(3n-2)!
1 answer
(3n+1)!*3!/(3n-2)!
= (3n+1)(3n)(3n-1)(3n-2)!3!/(3n-2)!
= 18n(9n^1 - 1)
Similar Questions
def factorial(n):
if n==1: else: return n* factorial(n-1) print("the factorial of ", 7, "is", factorial (7)) how could the
1 answer
Recursive Algorithms Quick Check 1 of 51 of 5 Items Question Consider the recursive function for the calculation of a factorial.
1 answer
Which code reflects the recursive case?
(1 point) Responses else: return (x * factorial(x - 1)) else: return (x * factorial(x -
1 answer
The following code is for a Python function to represent a recursive function to find the factorial of an integer
def
1 answer
more similar questions