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