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!)
A351187 G.f. A(x) satisfies: A(x) = 1 + x + x^2 * A(x/(1 + 6*x)) / (1 + 6*x). 4
1, 1, 1, -5, 25, -131, 793, -6137, 60049, -670919, 7930321, -96775853, 1225237609, -16333089227, 232150489129, -3531321746465, 57178717416097, -975918663642767, 17400776511175201, -322309002081819221, 6188520430773389881, -123166171374344928275, 2542231599282355411897 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
Shifts 2 places left under 6th-order inverse binomial transform.
LINKS
FORMULA
a(0) = a(1) = 1; a(n) = Sum_{k=0..n-2} binomial(n-2,k) * (-6)^k * a(n-k-2).
MATHEMATICA
nmax = 22; A[_] = 0; Do[A[x_] = 1 + x + x^2 A[x/(1 + 6 x)]/(1 + 6 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] (-6)^k a[n - k - 2], {k, 0, n - 2}]; Table[a[n], {n, 0, 22}]
CROSSREFS
Sequence in context: A102893 A094602 A207834 * A355839 A344396 A351587
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 June 1 08:45 EDT 2024. Contains 373015 sequences. (Running on oeis4.)