A201742 Decimal expansion of the number x satisfying x^2+3=e^x.
1, 8, 7, 3, 1, 2, 2, 5, 4, 7, 7, 1, 3, 0, 4, 3, 3, 2, 1, 7, 2, 0, 5, 9, 7, 0, 9, 6, 7, 5, 4, 2, 5, 7, 1, 0, 4, 0, 8, 3, 5, 2, 7, 4, 0, 2, 6, 5, 0, 3, 9, 2, 5, 1, 4, 2, 8, 0, 1, 7, 1, 8, 7, 2, 9, 4, 1, 3, 2, 0, 4, 2, 4, 5, 8, 0, 2, 0, 6, 1, 7, 4, 9, 3, 7, 4, 7, 9, 3, 8, 4, 6, 4, 8, 1, 6, 7, 3, 7
Offset: 1
Examples
x=1.87312254771304332172059709675425710408...
Crossrefs
Cf. A201741.
Programs
-
Mathematica
a = 1; b = 0; c = 3; f[x_] := a*x^2 + b*x + c; g[x_] := E^x Plot[{f[x], g[x]}, {x, -3, 3}, {AxesOrigin -> {0, 0}}] r = x /. FindRoot[f[x] == g[x], {x, 1.8, 1.9}, WorkingPrecision -> 110] RealDigits[r] (* A201742 *)
Comments