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!)
A351188 G.f. A(x) satisfies: A(x) = x + x^3 * A(x/(1 + x)) / (1 + x). 1
0, 1, 0, 0, 1, -2, 3, -3, -2, 24, -94, 280, -687, 1270, -655, -9306, 65087, -306724, 1202250, -4033365, 10855578, -15470865, -69819687, 850568716, -5679272040, 30749200898, -144912453016, 593521998765, -1956641103972, 3349999455415, 20123433921282, -295760693980981 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,6
COMMENTS
Shifts 3 places left under inverse binomial transform.
LINKS
FORMULA
a(0) = 0, a(1) = 1, a(2) = 0; a(n) = Sum_{k=0..n-3} (-1)^k * binomial(n-3,k) * a(n-k-3).
MATHEMATICA
nmax = 31; A[_] = 0; Do[A[x_] = x + x^3 A[x/(1 + x)]/(1 + x) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
a[0] = 0; a[1] = 1; a[2] = 0; a[n_] := a[n] = Sum[(-1)^k Binomial[n - 3, k] a[n - k - 3], {k, 0, n - 3}]; Table[a[n], {n, 0, 31}]
CROSSREFS
Sequence in context: A155688 A215490 A153592 * A153878 A118925 A308100
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Feb 04 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 24 00:30 EDT 2024. Contains 371917 sequences. (Running on oeis4.)