Return double factorial
n(n-2)...(5)(3)(1), n>0, odd
n!! = n(n-2)...(6)(4)(2), n>0, even
1 , n = -1, or n = 0For example
6!! = (6)(4)(2) = 48
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers69
Suggested Problems
-
Project Euler: Problem 5, Smallest multiple
1673 Solvers
-
Multiples of a Number in a Given Range
944 Solvers
-
1498 Solvers
-
486 Solvers
-
Find the max element of the array
2295 Solvers
More from this Author92
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Neither n = -1, nor n = 0 are tested.