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!)
A068341 Sum{k=1 to n} mu(k) mu(n+1-k), where mu(k) is the Moebius function. 11
1, -2, -1, 2, -1, 4, -2, 0, 3, 0, -1, -2, 1, 2, 6, -8, 0, -2, 3, 0, 5, -4, 2, -2, 1, -2, 1, -6, 5, -2, 4, -4, 5, 0, 10, -6, -7, -2, 2, -4, 3, -2, 1, -4, -1, 4, 10, 4, 4, -14, -1, -4, 8, 2, 2, -12, -3, 2, 13, 10, -11, -10, -2, -6, 13, -6, -5, -8, 5, 2, 18, 10, -5, -6, -9, 0 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
MATHEMATICA
a[n_] := Sum[ MoebiusMu[k]*MoebiusMu[n + 1 - k], {k, 1, n}]; Table[ a[n], {n, 1, 76}] (* Jean-François Alcover, Oct 10 2011 *)
PROG
(Haskell)
a068341 n = a068341_list !! (n-1)
a068341_list = f 1 [] where
f x ms = (sum $ zipWith (*) ms' $ reverse ms') : f (x + 1) ms' where
ms' = (a008683 x) : ms
-- Reinhard Zumkeller, Aug 03 2012
CROSSREFS
Sequence in context: A024559 A334664 A061797 * A360738 A321368 A338508
KEYWORD
sign
AUTHOR
Leroy Quet, Feb 27 2002
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 April 25 09:49 EDT 2024. Contains 371967 sequences. (Running on oeis4.)