login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

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
OFFSET
0,4
COMMENTS
Shifts 2 places left under 6th-order binomial transform.
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}]
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Feb 02 2022
STATUS
approved