OFFSET
0,2
COMMENTS
a(17) is the first term that differs from A051711.
LINKS
R. M. Corless, G. H. Gonnet, D. E. G. Hare, D. J. Jeffrey, and D. E. Knuth, On the Lambert W Function, Advances in Computational Mathematics, (5), 1996, pp. 329-359.
R. M. Corless, D. J. Jeffrey and D. E. Knuth, A sequence of series for the Lambert W Function (section 2.2).
EXAMPLE
W(exp(x)) = 1 +(x-1)/2+(x-1)^2/16-(x-1)^3/192-...
MAPLE
a:= n-> denom(coeftayl(LambertW(exp(x)), x=1, n)):
seq(a(n), n=0..30); # Alois P. Heinz, Nov 08 2012
MATHEMATICA
CoefficientList[ Series[ ProductLog[ Exp[1+x] ], {x, 0, 22}], x] // Denominator (* Jean-François Alcover, Oct 15 2012 *)
CROSSREFS
KEYWORD
nonn,easy,frac
AUTHOR
Paolo Bonzini, Jun 23 2016
STATUS
approved