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