login
A392012
The sum of the exponential divisors of the cubefree numbers.
1
1, 2, 3, 6, 5, 6, 7, 12, 10, 11, 18, 13, 14, 15, 17, 24, 19, 30, 21, 22, 23, 30, 26, 42, 29, 30, 31, 33, 34, 35, 72, 37, 38, 39, 41, 42, 43, 66, 60, 46, 47, 56, 60, 51, 78, 53, 55, 57, 58, 59, 90, 61, 62, 84, 65, 66, 67, 102, 69, 70, 71, 73, 74, 90, 114, 77, 78
OFFSET
1,2
COMMENTS
Also, the sum of the exponential unitary divisors of the cubefree numbers.
The number of these divisors is A382419(n).
LINKS
FORMULA
a(n) = A051377(A004709(n)).
a(n) = A057723(A004709(n)).
a(n) = A322857(A004709(n)).
Sum_{k=1..n} a(k) ~ c * n^2, where c = zeta(3)/(2*zeta(4)) = 0.5553132... .
MATHEMATICA
f[p_, e_] := If[e < 3, Sum[p^k, {k, 1, e}], 0]; s[1] = 1; s[n_] := Times @@ f @@@ FactorInteger[n]; Select[Array[s, 100] , # > 0 &]
PROG
(PARI) s(n) = {my(f = factor(n)); prod(i = 1, #f~, if(f[i, 2] < 3, sum(k = 1, f[i, 2], f[i, 1]^k), 0)); }
list(lim) = select(x -> x > 0, vector(lim, i, s(i)));
KEYWORD
nonn,easy
AUTHOR
Amiram Eldar, Dec 27 2025
STATUS
approved