A200595 Decimal expansion of least x>0 satisfying 3*x^2-3*x+4=tan(x).
1, 3, 9, 5, 8, 5, 1, 3, 6, 0, 6, 2, 1, 1, 4, 9, 0, 7, 4, 2, 7, 3, 3, 7, 7, 9, 0, 3, 8, 5, 6, 2, 9, 4, 1, 8, 1, 3, 8, 6, 2, 5, 9, 2, 9, 3, 6, 6, 7, 1, 2, 8, 5, 3, 4, 1, 1, 5, 7, 8, 9, 5, 2, 1, 2, 5, 9, 4, 3, 7, 2, 5, 3, 3, 8, 5, 0, 8, 2, 3, 6, 6, 7, 8, 3, 1, 4, 5, 0, 3, 2, 9, 1, 1, 4, 1, 5, 2, 3
Offset: 1
Examples
1.3958513606211490742733779038562941813862592...
Crossrefs
Cf. A200338.
Programs
-
Mathematica
a = 3; b = -3; 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.3, 1.4}, WorkingPrecision -> 110] RealDigits[r] (* A200595 *)
-
PARI
solve(x=1,2,3*x^2-3*x+4-tan(x)) \\ Charles R Greathouse IV, Dec 07 2014
Comments