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