login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A092410
a(n) = moebius(n)+moebius(n+1).
2
0, -2, -1, -1, 0, 0, -1, 0, 1, 0, -1, -1, 0, 2, 1, -1, -1, -1, -1, 1, 2, 0, -1, 0, 1, 1, 0, -1, -2, -2, -1, 1, 2, 2, 1, -1, 0, 2, 1, -1, -2, -2, -1, 0, 1, 0, -1, 0, 0, 1, 1, -1, -1, 1, 1, 1, 2, 0, -1, -1, 0, 1, 0, 1, 0, -2, -1, 1, 0, -2, -1, -1, 0, 1, 0, 1, 0, -2, -1, 0, 1, 0, -1, 1, 2, 2, 1, -1, -1, 1, 1, 1, 2, 2, 1, -1, -1, 0
OFFSET
1,2
LINKS
FORMULA
a(A074819(n)) = a(A068781(n)) = 0. - Reinhard Zumkeller, Sep 04 2015
MAPLE
with(numtheory): seq(mobius(n)+mobius(n+1), n=1..110); # Emeric Deutsch, Feb 28 2005
MATHEMATICA
Table[MoebiusMu[n] + MoebiusMu[n+1], {n, 1, 100}] (* Amiram Eldar, Sep 09 2022 *)
PROG
(PARI) for (i=1, 60, print1(", "moebius(i)+moebius(i+1)))
(Haskell)
a092410 n = a092410_list !! (n-1)
a092410_list = zipWith (+) a008683_list $ tail a008683_list
-- Reinhard Zumkeller, Sep 04 2015
CROSSREFS
Cf. A008683.
Cf. A068781, A074819 (positions of 0's).
Sequence in context: A328712 A374252 A319368 * A100204 A073779 A081227
KEYWORD
sign,easy
AUTHOR
Jon Perry, Mar 22 2004
EXTENSIONS
More terms from Emeric Deutsch, Feb 28 2005
STATUS
approved