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!)
A255369 a(n) = (sigma(n)-n-1)*(2-mu(n)), where sigma(n) is the sum of the divisors of n and mu(n) is the Möbius function. 1
-1, 0, 0, 4, 0, 5, 0, 12, 6, 7, 0, 30, 0, 9, 8, 28, 0, 40, 0, 42, 10, 13, 0, 70, 10, 15, 24, 54, 0, 123, 0, 60, 14, 19, 12, 108, 0, 21, 16, 98, 0, 159, 0, 78, 64, 25, 0, 150, 14, 84, 20, 90, 0, 130, 16, 126, 22, 31, 0, 214, 0, 33, 80, 124, 18, 231, 0, 114 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
COMMENTS
a(n) = 0 if and only if n is prime. If n is semiprime, then a(n) = sopfr(n).
LINKS
FORMULA
a(n) = A048050(n) * A228483(n) for n > 1, a(1) = -1.
MAPLE
with(numtheory): a:=n->(sigma(n)-n-1)*(2-mobius(n)): seq(a(n), n=1..100);
MATHEMATICA
Table[(DivisorSigma[1, n] - n - 1) (2 - MoebiusMu[n]), {n, 100}]
PROG
(Magma) [(SumOfDivisors(n)-n-1)*(2-MoebiusMu(n)): n in [1..80]]; // Vincenzo Librandi, May 05 2015
(Perl) use ntheory ":all"; say +(divisor_sum($_)-$_-1)*(2-moebius($_)) for 1..80; # Dana Jacobsen, May 13 2015
(PARI) a(n)=(sigma(n)-n-1)*(2-moebius(n)) \\ Dana Jacobsen, May 13 2015
CROSSREFS
Cf. A000203 (sigma), A008683 (Möbius function), A001414 (sopfr).
Cf. A048050 (Chowla's function), A228483 (2-mu(n)).
Sequence in context: A046779 A356174 A339436 * A292177 A051352 A239122
KEYWORD
sign
AUTHOR
Wesley Ivan Hurt, May 04 2015
EXTENSIONS
Formula corrected for case n=1 by Antti Karttunen, Feb 25 2018
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 28 19:55 EDT 2024. Contains 372919 sequences. (Running on oeis4.)