OFFSET
1,1
COMMENTS
The Lambert W function satisfies the functional equation e^(W(x) + W(y)) = x*y/(W(x)*W(y)) for x and y greater than -1/e, so that e^(2*W(2)) = 4/(W(2))^2. See A299613 for a guide to related constants.
LINKS
G. C. Greubel, Table of n, a(n) for n = 1..10000
Eric Weisstein's World of Mathematics, Lambert W-Function
EXAMPLE
e^(2*W(2)) = 5.50254660422072407531126813594932...
MATHEMATICA
w[x_] := ProductLog[x]; x = 2; y = 2;
N[E^(w[x] + w[y]), 130] (* A299625 *)
RealDigits[(2/LambertW[2])^2, 10, 100][[1]] (* G. C. Greubel, Mar 03 2018 *)
PROG
(PARI) (2/lambertw(2))^2 \\ G. C. Greubel, Mar 03 2018
CROSSREFS
KEYWORD
AUTHOR
Clark Kimberling, Mar 03 2018
STATUS
approved