OFFSET
0,3
LINKS
Gheorghe Coserea, Table of n, a(n) for n = 0..302
Michael Borinsky, Renormalized asymptotic enumeration of Feynman diagrams, arXiv:1703.00840 [hep-th], 2017.
Luca G. Molinari, Hedin's equations and enumeration of Feynman's diagrams, arXiv:cond-mat/0401500 [cond-mat.str-el], 2005.
Luca G. Molinari, Nicola Manini, Enumeration of many-body skeleton diagrams, arXiv:cond-mat/0512342 [cond-mat.str-el], 2006.
FORMULA
a(n) ~ 4*exp(-1)/sqrt(Pi) * n^(3/2) * 2^n * n! * (1 - 19/(8*n) - 23/(128*n^2) + O(1/n^3)). (see Borinsky link) - Gheorghe Coserea, Oct 21 2017
MATHEMATICA
max = 21; (* B(x) is A000699(x) *) B[_] = 0;
Do[B[x_] = x + x^2 D[B[x]^2/x, x] + O[x]^max // Normal, max];
Join[{1}, Drop[CoefficientList[(1-x/B[x])/x + O[x]^max, x], -2] Table[2n-1, {n, max-2}]] (* Jean-François Alcover, Oct 25 2018, from PARI *)
PROG
CROSSREFS
KEYWORD
nonn
AUTHOR
Gheorghe Coserea, May 18 2017
STATUS
approved