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!)
A351658 G.f. A(x) satisfies: A(x) = 1 - x * A(x/(1 - x)^2) / (1 - x). 1
1, -1, 0, 2, 3, -8, -61, -134, 567, 6908, 29631, -33857, -1624011, -13579197, -42493684, 449043601, 8591509012, 71167884338, 153434398957, -5188374785607, -95914651874891, -882652244738780, -1819090127593647, 96780404956817315, 2051640887011218601 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
a(0) = 1; a(n) = -Sum_{k=0..n-1} binomial(n+k-1,n-k-1) * a(k).
MATHEMATICA
nmax = 24; A[_] = 0; Do[A[x_] = 1 - x A[x/(1 - x)^2]/(1 - x) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
a[0] = 1; a[n_] := a[n] = -Sum[Binomial[n + k - 1, n - k - 1] a[k], {k, 0, n - 1}]; Table[a[n], {n, 0, 24}]
CROSSREFS
Sequence in context: A072043 A347289 A095203 * A003096 A333077 A354574
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Feb 16 2022
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 16:42 EDT 2024. Contains 371989 sequences. (Running on oeis4.)