OFFSET
0,4
REFERENCES
R. W. Robinson, Numerical implementation of graph counting algorithms, AGRC Grant, Math. Dept., Univ. Newcastle, Australia, 1982.
LINKS
R. W. Robinson, Table of n, a(n) for n = 0..48
FORMULA
E.g.f.: log(1 + Sum_{k>0} A001499(k)*x^k/k!). - Andrew Howroyd, Sep 09 2018
MATHEMATICA
m = 16;
a1499[n_] := (n - 1)*n!*Gamma[n - 1/2]*Hypergeometric1F1[2 - n, 3/2 - n, -1/2]/Sqrt[Pi];
egf = Log[1 + Sum[a1499[k] x^k/k!, {k, 1, m}]];
CoefficientList[egf + O[x]^m, x] Range[0, m-1]! (* Jean-François Alcover, Aug 26 2019 *)
PROG
(PARI) seq(n)={Vec(serlaplace(log(serlaplace(exp(-x/2 + O(x*x^n))/sqrt(1-x + O(x*x^n))))), -(n+1))}; \\ Andrew Howroyd, Sep 09 2018
CROSSREFS
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Nov 13 2006
STATUS
approved