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!)
A185694 Eigensequence for the Moebius mu triangle A152904. 8
1, -1, 2, -2, 3, -2, 1, 4, -10, 22, -36, 56, -72, 84, -71, 22, 99, -311, 654, -1122, 1702, -2267, 2611, -2312, 795, 2789, -9352, 19802, -34442, 52436, -70521, 81869, -74248, 29099, 79012, -279732, 600894, -1054809, 1616669, -2190772, 2567994 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
First column of the inverse of the number triangle T(n,k)=if(k<n, -A152904(n-1,k), if(k=n,1,0)).
LINKS
FORMULA
G.f.: 1 / (1 + Sum_{k>=1} mu(k)*x^k). - Ilya Gutkovskiy, Oct 02 2022
PROG
(Haskell)
a185694 n = a185694_list !! (n-1)
a185694_list = 1 : f [1] where
f xs = y : f (y : xs) where
y = sum $ zipWith (*) xs $ map negate a008683_list
-- Reinhard Zumkeller, Nov 03 2015
CROSSREFS
Sequence in context: A021452 A093420 A104897 * A305294 A097510 A237619
KEYWORD
sign
AUTHOR
Paul Barry, Feb 10 2011
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 14 02:26 EDT 2024. Contains 372528 sequences. (Running on oeis4.)