OFFSET
1,5
LINKS
Andrew Howroyd, Table of n, a(n) for n = 1..100
Eric Weisstein's World of Mathematics, Minimal Edge Cover.
Eric Weisstein's World of Mathematics, Path Complement Graph.
FORMULA
a(n) = Sum_{i=0..floor(n/2)} Sum{j=0..floor((n-2*i)/3)} (-1)^i * binomial(i+j,i) * binomial(n-i-2*j,i+j) * (n-2*i-3*j)! * [x^(n-2*i-3*j)] ((2*exp(x)-1)^i * exp(x)^j * exp(-x - x^2/2 + x*exp(x))). - Andrew Howroyd, Jun 14 2025
PROG
(PARI) a(n)={sum(i=0, n\2, sum(j=0, (n-2*i)\3, my(r=n-2*i-3*j, g=exp(x + O(x*x^r))); (-1)^i*binomial(i+j, i)*binomial(n-i-2*j, i+j)*(r)!*polcoef((2*g-1)^i*exp(j*x -x - x^2/2 + x*g), r)))} \\ Andrew Howroyd, Jun 14 2025
CROSSREFS
KEYWORD
nonn
AUTHOR
Eric W. Weisstein, Feb 14 2022
EXTENSIONS
a(9)-a(12) from Andrew Howroyd, Feb 21 2022
a(13) onwards from Andrew Howroyd, Jun 14 2025
STATUS
approved
