OFFSET
1,2
COMMENTS
Generating function denoted as x(t) = f(V_3;t) - 1 in Cameron page 182. - Michael Somos, Jun 13 2014
REFERENCES
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
LINKS
P. J. Cameron, Some treelike objects, Quart. J. Math. Oxford, 38 (1987), 155-183.
FORMULA
G.f. A(x) satisfies 0 = (1 + x) * A(x)^2 + (2*x - 2) * A(x) + (1 + x) * A(x^2) + 2*x. - Michael Somos, Jun 13 2014
EXAMPLE
G.f. = x + 2*x^2 + 5*x^3 + 15*x^4 + 48*x^5 + 166*x^6 + 596*x^7 + 2221*x^8 + ...
MATHEMATICA
m = 30; A[_] = 0;
Do[A[x_] = (2x + (1+x) A[x]^2 + (1+x) A[x^2])/(2(1-x)) + O[x]^m // Normal, {m}];
CoefficientList[A[x], x] (* Jean-François Alcover, Oct 23 2019 *)
PROG
(PARI) {a(n) = my(A); A = x + O(x^2); for(k=2, n, A = truncate(A) + x * O(x^k); A += x - (1-x)*A + (1+x)/2 * (A^2 + subst(A, x, x^2))); polcoeff(A, n)}; /* Michael Somos, Jun 13 2014 */
CROSSREFS
KEYWORD
nonn
AUTHOR
EXTENSIONS
a(10)-a(37) from Michael Somos, Jun 13 2014
STATUS
approved