A201334 Decimal expansion of x satisfying 7*x^2 = cot(x) and 0 < x < Pi.
5, 0, 7, 0, 9, 4, 7, 7, 8, 2, 5, 4, 4, 5, 8, 4, 8, 8, 0, 4, 1, 0, 6, 8, 0, 5, 8, 5, 7, 6, 1, 2, 5, 8, 4, 5, 2, 7, 7, 6, 6, 2, 4, 0, 4, 6, 9, 3, 1, 9, 6, 7, 3, 7, 6, 1, 4, 2, 9, 3, 7, 2, 4, 4, 3, 5, 6, 2, 3, 9, 8, 8, 5, 2, 1, 6, 2, 7, 6, 7, 2, 7, 2, 1, 4, 6, 7, 0, 3, 8, 3, 0, 9, 7, 0, 5, 3, 5, 8
Offset: 0
Examples
0.50709477825445848804106805857612584527766240...
Crossrefs
Cf. A201280.
Programs
-
Mathematica
a = 7; c = 0; f[x_] := a*x^2 + c; g[x_] := Cot[x] Plot[{f[x], g[x]}, {x, 0, Pi/2}, {AxesOrigin -> {0, 0}}] r = x /. FindRoot[f[x] == g[x], {x, .5, .6}, WorkingPrecision -> 110] RealDigits[r] (* A201334 *)
Comments