OFFSET
1,4
COMMENTS
Excess of prime-power exponents in n!.
LINKS
G. C. Greubel, Table of n, a(n) for n = 1..1000
FORMULA
EXAMPLE
n=46: prime powers in factorization of 46! are {42,21,10,6,4,3,2,2,2,1,1,1,1,1}. Sum of the exponents is 97. It has 14 distinct prime divisors, so a(46)=97-14=83.
MATHEMATICA
Table[PrimeOmega[n!] - PrimeNu[n!], {n, 1, 100}] (* G. C. Greubel, May 13 2017 *)
PROG
(PARI) for(n=1, 100, print1(bigomega(n!) - omega(n!), ", ")) \\ G. C. Greubel, May 13 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
Labos Elemer, Jun 07 2000
EXTENSIONS
Simpler definition from Alan Worley (aw(AT)xiboo.co.uk), Dec 10 2008
STATUS
approved