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