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!)
A351151 G.f. A(x) satisfies: A(x) = 1 + x^2 * A(x/(1 - 5*x)) / (1 - 5*x). 5
1, 0, 1, 5, 26, 145, 901, 6420, 52501, 480955, 4795626, 51066375, 576182001, 6879462680, 86955722401, 1162559359745, 16392133866026, 242734091500445, 3758825675820501, 60660434188558780, 1017770666417312501, 17725289455315892375, 320047193447632729626 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
Shifts 2 places left under 5th-order binomial transform.
LINKS
FORMULA
a(0) = 1, a(1) = 0; 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^2 A[x/(1 - 5 x)]/(1 - 5 x) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
a[0] = 1; a[1] = 0; 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: A053487 A277957 A183161 * A263134 A082029 A365150
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Feb 02 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 25 08:27 EDT 2024. Contains 371964 sequences. (Running on oeis4.)