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!)
A367866 a(n) = Sum_{d|n} d * sigma(d) * mu(d)^2. 1
1, 7, 13, 7, 31, 91, 57, 7, 13, 217, 133, 91, 183, 399, 403, 7, 307, 91, 381, 217, 741, 931, 553, 91, 31, 1281, 13, 399, 871, 2821, 993, 7, 1729, 2149, 1767, 91, 1407, 2667, 2379, 217, 1723, 5187, 1893, 931, 403, 3871, 2257, 91, 57, 217, 3991, 1281, 2863, 91 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Inverse Möbius transform of n * sigma(n) * mu(n)^2.
LINKS
N. J. A. Sloane, Transforms.
FORMULA
Multiplicative with a(p^e) = p^2 + p + 1. - Amiram Eldar, Dec 04 2023
Sum_{k=1..n} a(k) ~ n^3/3. - Vaclav Kotesovec, Dec 05 2023
MATHEMATICA
Table[Sum[d*DivisorSigma[1, d]*MoebiusMu[d]^2, {d, Divisors[n]}], {n, 100}]
PROG
(PARI) a(n) = sumdiv(n, d, if (issquarefree(d), d*sigma(d))); \\ Michel Marcus, Dec 04 2023
(Python)
from math import prod
from sympy import primefactors
def A367866(n): return prod(p*(p+1)+1 for p in primefactors(n)) # Chai Wah Wu, Dec 05 2023
CROSSREFS
Cf. A000203 (sigma), A008966 (mu^2), A343442.
Sequence in context: A046163 A130770 A158622 * A369717 A365346 A215990
KEYWORD
nonn,easy,mult
AUTHOR
Wesley Ivan Hurt, Dec 03 2023
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 21 09:41 EDT 2024. Contains 372733 sequences. (Running on oeis4.)