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