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!)
A351152 G.f. A(x) satisfies: A(x) = 1 + x^2 * A(x/(1 - 6*x)) / (1 - 6*x). 5
1, 0, 1, 6, 37, 240, 1693, 13446, 122329, 1261104, 14332681, 175123446, 2267871517, 30981705984, 446571784261, 6798161166486, 109220619908593, 1846729159654560, 32726973173941585, 605358657750562470, 11648701234354836565, 232655173657593759312 (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) = 1, a(1) = 0; a(n) = Sum_{k=0..n-2} binomial(n-2,k) * 6^k * a(n-k-2).
MATHEMATICA
nmax = 21; A[_] = 0; Do[A[x_] = 1 + x^2 A[x/(1 - 6 x)]/(1 - 6 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] 6^k a[n - k - 2], {k, 0, n - 2}]; Table[a[n], {n, 0, 21}]
CROSSREFS
Sequence in context: A005389 A080954 A271905 * A355957 A073013 A192238
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 September 15 11:09 EDT 2024. Contains 375938 sequences. (Running on oeis4.)