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!)
A351186 G.f. A(x) satisfies: A(x) = 1 + x + x^2 * A(x/(1 + 5*x)) / (1 + 5*x). 4
1, 1, 1, -4, 16, -69, 371, -2719, 24691, -243804, 2479276, -25931249, 284075601, -3320433179, 41744590941, -561939568544, 8008026088996, -119496752915869, 1854697111334891, -29870689367146379, 499291484226079551, -8668202648905259624, 156301404533216141576 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
Shifts 2 places left under 5th-order inverse binomial transform.
LINKS
FORMULA
a(0) = a(1) = 1; a(n) = Sum_{k=0..n-2} binomial(n-2,k) * (-5)^k * a(n-k-2).
MATHEMATICA
nmax = 22; A[_] = 0; Do[A[x_] = 1 + x + x^2 A[x/(1 + 5 x)]/(1 + 5 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] (-5)^k a[n - k - 2], {k, 0, n - 2}]; Table[a[n], {n, 0, 22}]
CROSSREFS
Sequence in context: A341255 A231358 A000303 * A298048 A344267 A144316
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 16 18:02 EDT 2024. Contains 371750 sequences. (Running on oeis4.)