OFFSET
2,3
COMMENTS
a(n) is the integer part of the average of the exponents in the prime factorization of n.
LINKS
G. C. Greubel, Table of n, a(n) for n = 2..5000
FORMULA
a(n) = floor(bigomega(n)/omega(n)) for n>=2.
EXAMPLE
a(12)=1 because 12=2^2 * 3^1 and floor(bigomega(12)/omega(12)) = floor((2+1)/2) = 1.
a(36)=2 because 36=2^2 * 3^2 and floor(bigomega(36)/omega(36)) = floor((2+2)/2) = 2.
a(60)=1 because 60=2^2 * 3^1 * 5^1 and floor(bigomega(60)/omega(60)) = floor((2+1+1)/3) = 1.
PROG
(PARI) v=[]; for(n=2, 150, v=concat(v, (bigomega(n)\omega(n)))); v
CROSSREFS
KEYWORD
nonn
AUTHOR
Rick L. Shepherd, Apr 11 2002
STATUS
approved