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”).

A351161
G.f. A(x) satisfies: A(x) = x + x^2 * A(x/(1 - 6*x)) / (1 - 6*x).
4
0, 1, 0, 1, 12, 109, 900, 7309, 62280, 590185, 6402360, 78347593, 1042633908, 14648616757, 214421295132, 3266839420021, 52041902492496, 870810496011793, 15326196662766384, 283049655668743249, 5460180803581446684, 109489002283248831037, 2273856664328893182324
OFFSET
0,5
COMMENTS
Shifts 2 places left under 6th-order binomial transform.
FORMULA
a(0) = 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_] = x + x^2 A[x/(1 - 6 x)]/(1 - 6 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] 6^k a[n - k - 2], {k, 0, n - 2}]; Table[a[n], {n, 0, 22}]
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Feb 03 2022
STATUS
approved