OFFSET
0,3
LINKS
Alois P. Heinz, Table of n, a(n) for n = 0..800
Gi-Sang Cheon, S.-T. Jin, L. W. Shapiro, A combinatorial equivalence relation for formal power series, Linear Algebra and its Applications, Available online 30 March 2015.
FORMULA
See page 11 of Cheon et al. 2015 for an explicit formula for a(n).
a(n) ~ 3^(6*n + 1/4) * (5 + sqrt(69))^(n + 1/2) * (39 + sqrt(69))^(6*n + 3/2) / (23^(1/4) * sqrt(Pi) * n^(3/2) * 2^(n+2) * 11^(12*n + 3)). - Vaclav Kotesovec, Nov 20 2017
MAPLE
a:= n-> coeff(series(RootOf(A=1+x*A^6+x^2*A^12, A), x, n+1), x, n):
seq(a(n), n=0..30); # Alois P. Heinz, Dec 09 2015
MATHEMATICA
m = 21; A[_] = 0;
Do[A[x_] = 1 + x A[x]^6 + x^2 A[x]^12 + O[x]^m, {m}];
CoefficientList[A[x], x] (* Jean-François Alcover, Oct 04 2019 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Dec 05 2015
EXTENSIONS
More terms from Alois P. Heinz, Dec 09 2015
STATUS
approved