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!)
A330324 a(n) = Sum_{i=1..n} Moebius(i)*Moebius(i+1), where Moebius(n) = A008683(n). 2
-1, 0, 0, 0, -1, -2, -2, -2, -2, -3, -3, -3, -4, -3, -3, -3, -3, -3, -3, -3, -2, -3, -3, -3, -3, -3, -3, -3, -2, -1, -1, -1, 0, 1, 1, 1, 0, 1, 1, 1, 2, 3, 3, 3, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 2, 2, 2, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, -1, -1, 0, 1, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,6
LINKS
MAPLE
a:= proc(n) option remember; `if`(n<1, 0,
a(n-1)+numtheory[mobius](n*(n+1)))
end:
seq(a(n), n=1..100); # Alois P. Heinz, Apr 17 2021
MATHEMATICA
Accumulate @ Table[MoebiusMu[n] * MoebiusMu[n+1], {n, 1, 100}] (* Amiram Eldar, Jul 26 2022 *)
PROG
(PARI) a(n) = sum(i=1, n, moebius(i*(i+1))); \\ Michel Marcus, Jul 26 2022
CROSSREFS
Partial sums of A330323.
Cf. A008683.
Sequence in context: A054893 A090617 A053693 * A341132 A291309 A280472
KEYWORD
sign
AUTHOR
N. J. A. Sloane, Dec 12 2019
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 26 18:29 EDT 2024. Contains 372840 sequences. (Running on oeis4.)