Factorial2
Factorial2(n)
n!!
returns the double factorial number of the integer
n
asn*(n-2)*(n-4)...
.
See
Examples
>> Factorial2(3)3
>> Factorial2(9)945
>> Factorial2(10)3840
Implementation status
- ✅ - full supported
Factorial2(n)
n!!
returns the double factorial number of the integer
n
asn*(n-2)*(n-4)...
.
See
>> Factorial2(3)3
>> Factorial2(9)945
>> Factorial2(10)3840