A201747 Decimal expansion of the number x satisfying x^2+8=e^x.
2, 7, 4, 2, 0, 5, 7, 1, 9, 7, 2, 5, 8, 6, 5, 1, 5, 9, 5, 5, 1, 9, 1, 6, 7, 3, 7, 8, 7, 9, 0, 0, 2, 3, 5, 8, 5, 1, 6, 8, 0, 2, 5, 4, 9, 1, 4, 3, 6, 1, 4, 1, 9, 6, 5, 8, 3, 5, 0, 3, 4, 4, 2, 5, 5, 8, 2, 5, 1, 3, 3, 8, 6, 4, 2, 9, 5, 0, 1, 5, 2, 3, 3, 6, 2, 7, 0, 1, 5, 3, 4, 1, 5, 0, 7, 2, 8, 0, 5
Offset: 1
Examples
x=2.7420571972586515955191673787900235851680254...
Crossrefs
Cf. A201741.
Programs
-
Mathematica
a = 1; b = 0; c = 8; 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, 2.7, 2.8}, WorkingPrecision -> 110] RealDigits[r] (* A201747 *)
Comments