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