OFFSET
2,3
COMMENTS
a(n) is the rounded average of the exponents in the prime factorization of n.
LINKS
G. C. Greubel, Table of n, a(n) for n = 2..1000 (corrected by Sean A. Irvine)
FORMULA
a(n) = round(bigomega(n)/omega(n)) for n>=2.
EXAMPLE
MATHEMATICA
Table[If[Ceiling[#] - # == 1/2, Ceiling[#], Round[#] ] &[PrimeOmega[n]/PrimeNu[n] ], {n, 2, 50}] (* G. C. Greubel, May 08 2017, corrected by Michael De Vlieger, Mar 02 2026 *)
PROG
(PARI) a(n) = round(bigomega(n)/omega(n));
CROSSREFS
KEYWORD
nonn
AUTHOR
Rick L. Shepherd, Apr 11 2002
STATUS
approved
