OFFSET
1,6
LINKS
Eric W. Weisstein, Table of n, a(n) for n = 1..100
Eric Weisstein's World of Mathematics, Complete Graph.
Eric Weisstein's World of Mathematics, Cyclic Edge Cut.
FORMULA
E.g.f.: (exp(B(x)-T(x))-(B(x)-T(x))-1)*exp(T(x)-1) where B(x) is the e.g.f. of A001187 and T(x) is the e.g.f. of A000272. - Andrew Howroyd, Nov 26 2024
MATHEMATICA
With[{n = 20},
B[x_] := 1 + Log[Sum[2^Binomial[k, 2] x^k/k!, {k, 0, n}]];
T[x_] := 1 - LambertW[-x] - LambertW[-x]^2/2;
Rest@CoefficientList[Series[(Exp[B[x] - T[x]] - (B[x] - T[x]) - 1) Exp[T[x] - 1], {x, 0, n}], x] Range[n]!
]
PROG
(PARI) seq(n)={my(t=sum(k=1, n, k^(k-2)*x^k/k!, O(x*x^n)), c=log(sum(k=0, n, 2^binomial(k, 2)*x^k/k!, O(x*x^n)))-t); Vec(serlaplace((exp(c)-1-c)*exp(t)), -n)} \\ Andrew Howroyd, Nov 26 2024
CROSSREFS
KEYWORD
nonn
AUTHOR
Eric W. Weisstein, Nov 23 2024
EXTENSIONS
a(8) onwards from Andrew Howroyd, Nov 26 2024
STATUS
approved