2 lines
66 B
Text
2 lines
66 B
Text
|
|
multifactorial6(N,D) = cond(N <= 0, 1, N*multifactorial6(N-D,D)).
|