OFFSET
1,1
REFERENCES
R. W. Robinson, Numerical implementation of graph counting algorithms, AGRC Grant, Math. Dept., Univ. Newcastle, Australia, 1978.
LINKS
Andrew Howroyd, Table of n, a(n) for n = 1..500
FORMULA
G.f.: 2*f(x) - f(x)^2 where f(x) is the g.f. of A000081. - Andrew Howroyd, Nov 02 2019
PROG
(PARI) \\ here TreeGf is A000081 as g.f.
TreeGf(N)={my(A=vector(N, j, 1)); for (n=1, N-1, A[n+1] = 1/n * sum(k=1, n, sumdiv(k, d, d*A[d]) * A[n-k+1] ) ); x*Ser(A)}
seq(n)={Vec(2*TreeGf(n) - TreeGf(n)^2)} \\ Andrew Howroyd, Nov 02 2019
CROSSREFS
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Oct 19 2006
EXTENSIONS
Edited by Christian G. Bower and Franklin T. Adams-Watters, Jan 05 2007
STATUS
approved