OFFSET
2,1
LINKS
G. C. Greubel, Table of n, a(n) for n = 2..5000
EXAMPLE
12 = 2 * 2 * 3, so a(12) = (2 + 2 + 3) / 3 = 7/3.
Sequence of fractions starts 2/1, 3/1, 2/1, 5/1, 5/2, 7/1, 2/1, 3/1, 7/2, 11/1, 7/3.
MATHEMATICA
f[n_] := Plus @@ Times @@@ FactorInteger@n; f[1] = 0; Numerator[ Table[ f[n]/PrimeOmega[n], {n, 2, 50}]] (* G. C. Greubel, Oct 14 2017 *)
CROSSREFS
KEYWORD
frac,nonn
AUTHOR
Franklin T. Adams-Watters, Oct 02 2006
STATUS
approved