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!)
A346078 G.f. A(x) satisfies: A(x) = 1 + x - x^2 * A(x/(1 - x)) / (1 - x). 2
1, 1, -1, -2, -2, 1, 11, 33, 61, 22, -418, -2363, -8375, -19715, -6325, 263490, 1950298, 9423505, 33042827, 59212141, -283826231, -3970508822, -28167479326, -148668438363, -571280079455, -848399025239, 11052089847863, 148600718966518, 1198795581209734 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
a(0) = a(1) = 1; a(n) = -Sum_{k=0..n-2} binomial(n-2,k) * a(k).
MATHEMATICA
nmax = 28; A[_] = 0; Do[A[x_] = 1 + x - x^2 A[x/(1 - x)]/(1 - x) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
a[0] = a[1] = 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: A307093 A327087 A088876 * A014846 A100942 A132471
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Jul 04 2021
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 11 01:05 EDT 2024. Contains 375059 sequences. (Running on oeis4.)