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