A200479 Decimal expansion of least x>0 satisfying x^2-x+3=tan(x).
1, 2, 8, 1, 5, 9, 8, 1, 8, 8, 3, 8, 9, 5, 4, 6, 5, 5, 1, 8, 1, 6, 8, 0, 9, 9, 7, 6, 0, 1, 5, 6, 1, 0, 9, 5, 7, 3, 8, 6, 8, 5, 9, 0, 5, 6, 4, 0, 3, 2, 7, 6, 0, 4, 2, 4, 2, 5, 3, 3, 9, 4, 9, 7, 0, 7, 6, 8, 5, 8, 0, 5, 0, 6, 4, 5, 2, 5, 4, 8, 1, 9, 3, 8, 7, 1, 0, 2, 1, 4, 2, 9, 9, 3, 0, 9, 4, 7, 1
Offset: 1
Examples
x=1.2815981883895465518168099760156109573868...
Crossrefs
Cf. A200338.
Programs
-
Mathematica
a = 1; b = -1; c = 3; f[x_] := a*x^2 + b*x + c; g[x_] := Tan[x] Plot[{f[x], g[x]}, {x, -.1, Pi/2}, {AxesOrigin -> {0, 0}}] r = x /. FindRoot[f[x] == g[x], {x, 1.2, 1.3}, WorkingPrecision -> 110] RealDigits[r] (* A200479 *)
Comments