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