OFFSET
2,3
COMMENTS
Number of decompositions of n! into factors of the form (p_k)^(e^k).
LINKS
Amiram Eldar, Table of n, a(n) for n = 2..6940
Eric Weisstein's World of Mathematics, Alladi-Grinstead Constant
FORMULA
EXAMPLE
4! = 3*8 = 2*3*4 = 2*2*2*3, so a(4)=3.
5! = 3*5*8 = 2*3*4*5 = 2*2*2*3*5, so a(5)=3.
MATHEMATICA
f[n_] := Times @@ PartitionsP /@ Last /@ FactorInteger[ n!]; Array[f, 34, 2] (* Robert G. Wilson v, Sep 22 2006 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Eric W. Weisstein, Jun 23 2003
EXTENSIONS
More terms from Vladeta Jovovic, Jun 27 2003
STATUS
approved