The MULTINOMIAL function calculates the multinomial of a list of numbers. The function is calculated using according to the following:
MULTINOMIAL (a, b, c) = FACT(a + b +c) / [FACT(a)*FACT(b)*FACT(c)]
For example:
MULTINOMIAL(1, 2, 3)
returns 60.
See also: