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!)
A351056 G.f. A(x) satisfies: A(x) = 1 + x + x^2 * A(x/(1 - 5*x)) / (1 - 5*x). 4
1, 1, 1, 6, 36, 221, 1431, 10121, 80311, 718106, 7111976, 76201501, 868288401, 10438492181, 132166853861, 1763179150946, 24776241643056, 365971430085021, 5662954240306111, 91450179009971181, 1536249848608545451, 26782376261726525126, 483792982362049317676 (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) = 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: A129324 A180218 A218991 * A166748 A200378 A085687
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jan 30 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 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)