OFFSET
0,2
COMMENTS
For n <= 16, denominators in expansion of W(exp(x)) about x=1, where W is the Lambert function.
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..365
J. M. Borwein and R. M. Corless, Emerging tools for experimental mathematics.
J. M. Borwein and R. M. Corless, Emerging tools for experimental mathematics, Amer. Math. Monthly, 106 (No. 10, 1999), 889-909.
INRIA Algorithms Project, Encyclopedia of Combinatorial Structures 647
FORMULA
E.g.f.: (1-2*x)/(1-4*x).
a(n) = 4*n * a(n-1), n > 0.
EXAMPLE
W(exp(x)) = 1 + (x-1)/2 + (x-1)^2/16 - (x-1)^3/192 - ... .
MATHEMATICA
Join[{1}, Table[(n! 4^n)/2, {n, 20}]] (* Harvey P. Dale, Oct 05 2012 *)
PROG
(PARI) a(n)=if(n<1, !n, 4^n/2*n!)
(Magma) [1] cat [2^(2*n-1)*Factorial(n): n in [1..30]]; // G. C. Greubel, Mar 06 2018
CROSSREFS
KEYWORD
nonn,easy,nice,frac
AUTHOR
EXTENSIONS
More terms from James A. Sellers, Dec 07 1999
Edited by Michael Somos, Aug 21 2002
STATUS
approved