OFFSET
1,4
LINKS
Andrew Howroyd, Table of n, a(n) for n = 1..1000
Eric Weisstein's World of Mathematics, Uniquely Embeddable Graph.
Eric Weisstein's World of Mathematics, Tree.
FORMULA
G.f.: x + ((1 - x)*g(x)^2 + (1 + x)*g(x^2))/2 + x*(g(x)^3 - 3*g(x)*g(x^2) + 2*g(x^3))/6, where g(x) is the g.f. of A003238. - Andrew Howroyd, Jun 08 2025
PROG
(PARI) \\ G(n) is A003238 as g.f.
G(n) = {my(v=vector(n)); v[1]=1; for(i=2, n, v[i]=sumdiv(i-1, d, v[d])); x*Ser(v)}
seq(n) = {my(g=G(n-1)); Vec(x + ((1 - x)*g^2 + (1 + x)*subst(g, x, x^2))/2 + x*(g^3 - 3*g*subst(g, x, x^2) + 2*subst(g, x, x^3))/6)} \\ Andrew Howroyd, Jun 08 2025
CROSSREFS
KEYWORD
nonn
AUTHOR
Eric W. Weisstein, Dec 03 2024
EXTENSIONS
a(13) onwards from Andrew Howroyd, Jun 08 2025
STATUS
approved
