A200477 Decimal expansion of least x>0 satisfying x^2-x+1=tan(x).
6, 5, 9, 6, 0, 6, 2, 2, 6, 9, 1, 3, 3, 5, 3, 9, 0, 4, 4, 3, 4, 8, 1, 9, 3, 9, 2, 7, 7, 3, 3, 5, 5, 8, 5, 0, 5, 7, 5, 1, 0, 3, 4, 0, 5, 2, 0, 2, 9, 6, 0, 9, 8, 1, 4, 6, 9, 4, 6, 0, 6, 6, 3, 9, 7, 5, 9, 1, 8, 4, 6, 4, 7, 4, 1, 9, 3, 8, 5, 8, 9, 9, 9, 8, 0, 3, 8, 7, 2, 0, 5, 7, 1, 1, 9, 9, 0, 9, 1
Offset: 0
Examples
x=0.659606226913353904434819392773355850...
Crossrefs
Cf. A200338.
Programs
-
Mathematica
a = 1; b = -1; c = 1; 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.51, 1.52}, WorkingPrecision -> 110] RealDigits[r] (* A200477 *)
Comments