The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A347124 Möbius transform of A341528, n * sigma(A003961(n)). 3
1, 7, 17, 44, 39, 119, 83, 268, 261, 273, 153, 748, 233, 581, 663, 1616, 339, 1827, 455, 1716, 1411, 1071, 689, 4556, 1385, 1631, 3933, 3652, 927, 4641, 1177, 9712, 2601, 2373, 3237, 11484, 1553, 3185, 3961, 10452, 1803, 9877, 2063, 6732, 10179, 4823, 2537, 27472, 6433, 9695, 5763, 10252, 3179, 27531, 5967, 22244 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Multiplicative because A341528 is.
LINKS
FORMULA
a(n) = Sum_{d|n} A008683(n/d) * A341528(d).
a(n) = A347125(n) - A346239(n).
Multiplicative with a(p^e) = p^(e-1)*(q^e*(p*q-1)-p+1)/(q-1), where q = A151800(p). - Sebastian Karlsson, Sep 02 2021
Sum_{k=1..n} a(k) ~ c * n^3 / 3, where c = (1/zeta(3)) / Product_{p prime} (1 - (q(p)-p)/p^2 - q(p)/p^3) = 5.6488805... , and q(p) = A151800(p). - Amiram Eldar, Dec 24 2023
MATHEMATICA
f[p_, e_] := Module[{q = NextPrime[p]}, p^(e-1) * (q^e * (p*q-1) - p + 1)/(q-1)]; a[1] = 1; a[n_] := Times @@ f @@@ FactorInteger[n]; Array[a, 100] (* Amiram Eldar, Dec 24 2023 *)
PROG
(PARI)
A003961(n) = { my(f = factor(n)); for(i=1, #f~, f[i, 1] = nextprime(f[i, 1]+1)); factorback(f); };
A003973(n) = sigma(A003961(n));
A341528(n) = (n*A003973(n));
A347124(n) = sumdiv(n, d, moebius(n/d)*A341528(d));
CROSSREFS
Sequence in context: A124965 A253973 A200080 * A179030 A179031 A107178
KEYWORD
nonn,mult
AUTHOR
Antti Karttunen, Aug 24 2021
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 14 16:45 EDT 2024. Contains 372533 sequences. (Running on oeis4.)