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