login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A062348
a(n) = n! / (number of distinct prime divisors of n).
1
2, 6, 24, 120, 360, 5040, 40320, 362880, 1814400, 39916800, 239500800, 6227020800, 43589145600, 653837184000, 20922789888000, 355687428096000, 3201186852864000, 121645100408832000, 1216451004088320000
OFFSET
2,1
LINKS
FORMULA
a(n) = n! / omega(n).
PROG
(PARI) a(n)=if(n<2, 0, n!/omega(n));
CROSSREFS
Sequence in context: A366368 A355988 A330043 * A189856 A189567 A189859
KEYWORD
easy,nonn
AUTHOR
Jason Earls, Jul 06 2001
STATUS
approved