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

A348879
G.f. A(x) satisfies: A(x) = 1 / (1 - x - x^2 * A(3*x)).
3
1, 1, 2, 6, 29, 221, 2815, 59607, 2175115, 134785987, 14543011028, 2682224473296, 864129873439979, 476879023670530355, 460188677448639450646, 761220053428592181980874, 2202591080616789155249254723, 10927081698418028875550581480027, 94836180093445711611212497662570806
OFFSET
0,3
FORMULA
a(0) = 1; a(n) = a(n-1) + Sum_{k=0..n-2} 3^k * a(k) * a(n-k-2).
a(n) ~ c * 3^(n*(n-2)/4), where c = 4.2101130581370834571021724998929772199905440992108887037121562184404379... - Vaclav Kotesovec, Nov 03 2021
MATHEMATICA
nmax = 18; A[_] = 0; Do[A[x_] = 1/(1 - x - x^2 A[3 x]) + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
a[0] = 1; a[n_] := a[n] = a[n - 1] + Sum[3^k a[k] a[n - k - 2], {k, 0, n - 2}]; Table[a[n], {n, 0, 18}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Nov 02 2021
STATUS
approved