This is documentation for an old release of SciPy (version 0.10.1). Read this page in the documentation of the latest stable release (version 1.15.1).
n(!!...!) = multifactorial of order k k times
Parameters : | n : int, array_like
exact : bool, optional
|
---|---|
Returns : | val : int
|
Raises : | NotImplementedError :
|
Examples
>>> sc.factorialk(5, 1, exact=True)
120L
>>> sc.factorialk(5, 3, exact=True)
10L