Svoboda | Graniru | BBC Russia | Golosameriki | Facebook
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!)
A336970 G.f. A(x) satisfies: A(x) = 1 - x^2 * A(x/(1 - x)) / (1 - x). 4
1, 0, -1, -1, 0, 3, 9, 16, 7, -87, -472, -1567, -3375, -216, 45927, 308107, 1372744, 4351599, 5711849, -49345432, -547773585, -3517370859, -16914970464, -56474505155, -25470754271, 1593389360016, 17323737305039, 125785962635543, 706598399399184 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,6
LINKS
FORMULA
a(0) = 1, a(1) = 0; a(n) = -Sum_{k=0..n-2} binomial(n-2,k) * a(k).
MATHEMATICA
nmax = 28; A[_] = 0; Do[A[x_] = 1 - x^2 A[x/(1 - x)]/(1 - x) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
a[0] = 1; a[n_] := a[n] = -Sum[Binomial[n - 2, k] a[k], {k, 0, n - 2}]; Table[a[n], {n, 0, 28}]
CROSSREFS
Sequence in context: A134137 A174179 A076362 * A366051 A070066 A299636
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Aug 09 2020
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 August 6 04:33 EDT 2024. Contains 374957 sequences. (Running on oeis4.)