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!)
A346079 G.f. A(x) satisfies: A(x) = x - x^2 * A(x/(1 - x)) / (1 - x). 1
0, 1, 0, -1, -2, -2, 2, 17, 54, 109, 54, -796, -5000, -19499, -52252, -44617, 577554, 5071906, 27330978, 108557573, 263947354, -453137963, -11252508862, -92193933208, -545809325184, -2441788385255, -6271647457176, 22814756330975, 492197181810550, 4609129908957190 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
LINKS
FORMULA
a(0) = 0, a(1) = 1; a(n) = -Sum_{k=0..n-2} binomial(n-2,k) * a(k).
MATHEMATICA
nmax = 29; A[_] = 0; Do[A[x_] = x - x^2 A[x/(1 - x)]/(1 - x) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
a[0] = 0; a[1] = 1; a[n_] := a[n] = -Sum[Binomial[n - 2, k] a[k], {k, 0, n - 2}]; Table[a[n], {n, 0, 29}]
CROSSREFS
Sequence in context: A098919 A161748 A369011 * A195871 A214756 A079007
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 14 23:14 EDT 2024. Contains 375171 sequences. (Running on oeis4.)