OFFSET
0,2
COMMENTS
See A202537 for a guide to related sequences. The Mathematica program includes a graph.
EXAMPLE
0.19946057824300535148857771838494917839277692...
MATHEMATICA
u = 3; v = 1;
f[x_] := E^(u*x) - E^(-v*x); g[x_] := 1
Plot[{f[x], g[x]}, {x, -2, 2}, {AxesOrigin -> {0, 0}}]
r = x /. FindRoot[f[x] == g[x], {x, .1, .2}, WorkingPrecision -> 110]
RealDigits[r] (* A202540 *)
RealDigits[ Log[ Root[#^4 - # - 1&, 2]], 10, 99] // First (* Jean-François Alcover, Feb 27 2013 *)
PROG
(PARI) log(polrootsreal(x^4-x-1)[2]) \\ Charles R Greathouse IV, May 14 2019
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Dec 21 2011
STATUS
approved