OFFSET
1,4
COMMENTS
Terms are always integers by the following classical theorem: let x(i) be k positive integers such that x(1)+x(2)+...+x(k) <= n, then x(1)!*x(2)!*...*x(k)! divides n! - Benoit Cloitre, Sep 16 2002
LINKS
T. D. Noe, Table of n, a(n) for n = 1..400
EXAMPLE
a(12) = 12! / (2!*3!) = 39916800.
MATHEMATICA
Table[n!/Times@@(First[Transpose[FactorInteger[n]]]!), {n, 30}] (* Harvey P. Dale, May 07 2011 *)
CROSSREFS
KEYWORD
nice,nonn,easy
AUTHOR
Amarnath Murthy, Sep 09 2002
EXTENSIONS
a(26) from Harvey P. Dale, May 07 2011
STATUS
approved