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