OFFSET
0,1
COMMENTS
See A202322 for a guide to related sequences. The Mathematica program includes a graph.
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..5000
EXAMPLE
x=-0.7920599684306770014183958778854220...
MATHEMATICA
u = 3; v = 0;
f[x_] := u*x + v; g[x_] := E^x
Plot[{f[x], g[x]}, {x, -1, 2}, {AxesOrigin -> {0, 0}}]
r = x /. FindRoot[f[x] == g[x], {x, 0.6, 0.7}, WorkingPrecision -> 110]
RealDigits[r] (* A202351 *)
r = x /. FindRoot[f[x] == g[x], {x, 1.5, 1.6}, WorkingPrecision -> 110]
RealDigits[r] (* A202352 *)
(* other program *)
RealDigits[ ProductLog[E^3] - 3, 10, 99] // First (* Jean-François Alcover, Feb 14 2013 *)
PROG
(PARI) lambertw(exp(3)) - 3 \\ G. C. Greubel, Jun 10 2017
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Dec 18 2011
EXTENSIONS
a(97)-a(98) corrected by Jean-François Alcover, Feb 14 2013
STATUS
approved