OFFSET
1,1
COMMENTS
Counts exclude the null graph.
LINKS
Andrew Howroyd, Table of n, a(n) for n = 1..500
Eric Weisstein's World of Mathematics, Centipede Graph.
Eric Weisstein's World of Mathematics, Graph Minor.
PROG
(PARI) \\ G() is g.f. of connected subgraphs: x counting number of centipede segments required and y counting number of unused single vertices. Excludes single vertex.
EulerMTS(p)={my(n=serprec(p, x)-1, vars=variables(p)); exp(sum(i=1, n, substvec(p + O(x*x^(n\i)), vars, apply(v->v^i, vars))/i))}
G() = x*(1 - x - (3 + y^2)*x^2 + (2 - y)*(1 + y^2)*x^3 + (1 + y^2)*x^4 + (1 - 3*y + y^2 - y^3 + y^4)*y*x^5 - (1 - y^2)*y^2*x^6 + (1 - y)*y^4*x^7)/((1 - (2 + y)*x + y*x^2)*(1 - (2 + y^2)*x^2 + y^2*x^4))
seq(n) = {my(p=EulerMTS(G() + O(x*x^n))); Vec(subst(deriv(y*p/(1 - x*y^2), y), y, 1) - 1/(1-x))} \\ Andrew Howroyd, Jun 20 2025
CROSSREFS
KEYWORD
nonn
AUTHOR
Eric W. Weisstein, May 06 2022
EXTENSIONS
a(11) onwards from Andrew Howroyd, Jun 20 2025
STATUS
approved
