login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A202351 Decimal expansion of least x satisfying 3*x = exp(x). 4
6, 1, 9, 0, 6, 1, 2, 8, 6, 7, 3, 5, 9, 4, 5, 1, 1, 2, 1, 5, 2, 3, 2, 6, 9, 9, 4, 0, 2, 0, 9, 2, 2, 2, 3, 3, 3, 0, 1, 4, 7, 1, 7, 7, 7, 2, 6, 2, 9, 6, 9, 3, 5, 2, 4, 5, 9, 8, 3, 6, 0, 7, 4, 4, 9, 2, 9, 3, 7, 3, 5, 2, 2, 5, 5, 0, 8, 8, 7, 3, 4, 6, 1, 1, 0, 4, 6, 9, 2, 6, 1, 8, 8, 2, 5, 8, 8, 4, 0 (list; constant; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
See A202320 for a guide to related sequences. The Mathematica program includes a graph.
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..9999 [Offset shifted by Georg Fischer, Oct 18 2021]
EXAMPLE
least: 0.61906128673594511215232699402092223330147...
greatest: 1.51213455165784247389673967807203870460...
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 *)
RealDigits[ -ProductLog[-1/3], 10, 99] // First (* Jean-François Alcover, Feb 27 2013 *)
PROG
(PARI) solve(x=0, 1, 3*x-exp(x)) \\ Michel Marcus, Nov 09 2017
CROSSREFS
Cf. A202320.
Sequence in context: A140248 A336696 A127169 * A111507 A117236 A349141
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Dec 17 2011
EXTENSIONS
Offset corrected by Georg Fischer, Aug 02 2021
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 08:27 EDT 2024. Contains 371964 sequences. (Running on oeis4.)