login
Decimal expansion of least x satisfying x^2 + 10 = csc(x) and 0 < x < Pi.
4

%I #13 Feb 07 2025 16:44:07

%S 1,0,0,0,6,6,8,8,4,0,7,2,9,1,9,3,0,9,2,7,9,8,0,5,3,8,4,4,5,9,3,8,1,1,

%T 1,5,0,6,0,7,1,7,8,5,4,6,9,8,0,2,2,5,0,0,6,0,9,9,9,8,6,7,6,2,9,6,3,7,

%U 6,9,7,5,0,6,9,5,8,2,6,1,7,7,6,0,5,8,1,0,9,3,5,5,1,2,5,2,5,1,2

%N Decimal expansion of least x satisfying x^2 + 10 = csc(x) and 0 < x < Pi.

%C See A201564 for a guide to related sequences. The Mathematica program includes a graph.

%H G. C. Greubel, <a href="/A201578/b201578.txt">Table of n, a(n) for n = 0..10000</a>

%H <a href="/index/Tra#transcendental">Index entries for transcendental numbers</a>.

%e least: 0.100066884072919309279805384459381115060...

%e greatest: 3.090421270152151453651497443899920534...

%t a = 1; c = 10;

%t f[x_] := a*x^2 + c; g[x_] := Csc[x]

%t Plot[{f[x], g[x]}, {x, 0, Pi}, {AxesOrigin -> {0, 0}}]

%t r = x /. FindRoot[f[x] == g[x], {x, .1, .2}, WorkingPrecision -> 110]

%t RealDigits[r] (* A201578 *)

%t r = x /. FindRoot[f[x] == g[x], {x, 3.0, 3.1}, WorkingPrecision -> 110]

%t RealDigits[r] (* A201581 *)

%o (PARI) a=1; c=10; solve(x=0.1, 0.2, a*x^2 + c - 1/sin(x)) \\ _G. C. Greubel_, Aug 21 2018

%Y Cf. A201564.

%K nonn,cons

%O 0,5

%A _Clark Kimberling_, Dec 03 2011