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!)
A351132 G.f. A(x) satisfies: A(x) = x + x^2 * A(x/(1 - 5*x)) / (1 - 5*x). 4
0, 1, 0, 1, 10, 76, 530, 3701, 27810, 237151, 2316350, 25135126, 292106400, 3559029501, 45211131460, 600619791201, 8384107777030, 123237338584576, 1904128564485610, 30789744821412401, 518479182191232950, 9057086806410632751, 163745788914416588050 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
COMMENTS
Shifts 2 places left under 5th-order binomial transform.
LINKS
FORMULA
a(0) = 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_] = x + x^2 A[x/(1 - 5 x)]/(1 - 5 x) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
a[0] = 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: A223994 A016149 A081199 * A198692 A215465 A169584
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Feb 03 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 March 29 06:57 EDT 2024. Contains 371265 sequences. (Running on oeis4.)