OFFSET
1,4
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
R. L. Duncan, A class of additive arithmetical functions, The American Mathematical Monthly, Vol. 69, No. 1 (1962), pp. 34-36.
FORMULA
If n = Product (p_j^k_j) then a(n) = Sum (k_j^3).
From Amiram Eldar, Jul 03 2025: (Start)
Additive with a(p^e) = e^3.
Sum_{k=1..n} a(k) ~ n * log(log(n)) + B_3 * n + O(n/log(n)), where B_3 = gamma + Sum_{p prime} ((1-1/p)*Sum_{m>=1} m^3/p^m + log(1-1/p)) = 16.17021843694072992072..., and gamma is Euler's constant (A001620) (Duncan, 1962). (End)
MATHEMATICA
Join[{0}, Table[Plus @@ (#[[2]]^3 & /@ FactorInteger[n]), {n, 2, 90}]]
PROG
(PARI) a(n) = my(f=factor(n)); sum(k=1, #f~, f[k, 2]^3); \\ Michel Marcus, Jun 10 2025
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Ilya Gutkovskiy, Jun 10 2025
STATUS
approved
