OFFSET
1,2
COMMENTS
LINKS
Eric Weisstein's World of Mathematics, Factorial Products
EXAMPLE
a(4) = 8 because 8 products of factorials do not exceed 4!, namely, 1, 2, 4, 6, 8, 12, 16 and 24.
MATHEMATICA
m[n_]:=(For[p=0; a=f=Table[k!, {k, 1, n}], p=!=a, p=a; a=Select[Union@@Outer[Times, f, a], #<=n!&]]; a); Table[Length[m[n]], {n, 20}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Jonathan Sondow, Dec 22 2004
EXTENSIONS
a(21)-a(33) from Donovan Johnson, May 30 2012
STATUS
approved