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