The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A351185 G.f. A(x) satisfies: A(x) = 1 + x + x^2 * A(x/(1 + 4*x)) / (1 + 4*x). 4
1, 1, 1, -3, 9, -31, 153, -1075, 8689, -72031, 605201, -5282051, 49239225, -497094079, 5410919273, -62597718643, 759331611489, -9586004915007, 125701843190689, -1713676634245251, 24313707650733289, -358906747784541151, 5502327502961296825, -87382907614533531443 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
Shifts 2 places left under 4th-order inverse binomial transform.
LINKS
FORMULA
a(0) = a(1) = 1; a(n) = Sum_{k=0..n-2} binomial(n-2,k) * (-4)^k * a(n-k-2).
MATHEMATICA
nmax = 23; A[_] = 0; Do[A[x_] = 1 + x + x^2 A[x/(1 + 4 x)]/(1 + 4 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] (-4)^k a[n - k - 2], {k, 0, n - 2}]; Table[a[n], {n, 0, 23}]
CROSSREFS
Sequence in context: A245116 A255382 A089475 * A299549 A099999 A039749
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 May 17 08:10 EDT 2024. Contains 372579 sequences. (Running on oeis4.)