OFFSET
0,4
COMMENTS
The edges of an induced subgraph G|S are those edges of G with both ends contained in S, where S is a subset of the vertices.
LINKS
Andrew Howroyd, Table of n, a(n) for n = 0..50
PROG
(PARI)
seq(n)={
my(p=sum(k=0, n, 2^binomial(k, 2)*x^k/k!, O(x*x^n)));
my(g=Vec(serlaplace(log(p))));
my(q=sum(k=0, n, sum(j=2, k, binomial(k, j)*g[j]*2^(binomial(k-j, 2) + j*(k-j)))*x^k/k!, O(x*x^n)));
Vec(serlaplace(q/p), -n-1)
} \\ Andrew Howroyd, Dec 10 2018
CROSSREFS
KEYWORD
nonn
AUTHOR
Gus Wiseman, Aug 02 2018
EXTENSIONS
a(6) from Gus Wiseman, Dec 10 2018
Terms a(7) and beyond from Andrew Howroyd, Dec 10 2018
STATUS
approved