Function: math-stirling-2
math-stirling-2 is a byte-compiled function defined in
calc-comb.el.gz.
Signature
(math-stirling-2 N M)
Source Code
;; Defined in /usr/src/emacs/lisp/calc/calc-comb.el.gz
(defun math-stirling-2 (n m)
(or (aref (aref math-stirling-local-cache n) m)
(aset (aref math-stirling-local-cache n) m
(math-add (math-stirling-2 (1- n) (1- m))
(math-mul m (math-stirling-2 (1- n) m))))))