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