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!)
A351057 G.f. A(x) satisfies: A(x) = 1 + x + x^2 * A(x/(1 - 6*x)) / (1 - 6*x). 4
1, 1, 1, 7, 49, 349, 2593, 20755, 184609, 1851289, 20735041, 253471039, 3310505425, 45630322741, 660993079393, 10065000586507, 161262522401089, 2717539655666353, 48053169836707969, 888408313419305719, 17108882037936283249, 342144175940842590349, 7089944927940141776545 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
Shifts 2 places left under 6th-order 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: A033143 A024582 A024587 * A240721 A233658 A344270
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 June 26 14:11 EDT 2024. Contains 373718 sequences. (Running on oeis4.)