login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A201573
Decimal expansion of greatest x satisfying x^2 + 6 = csc(x) and 0 < x < Pi.
3
3, 0, 7, 6, 8, 9, 4, 9, 2, 9, 2, 4, 6, 1, 9, 2, 0, 2, 3, 1, 6, 6, 6, 9, 3, 6, 4, 7, 3, 2, 7, 7, 2, 5, 7, 7, 3, 2, 4, 8, 4, 1, 9, 8, 0, 6, 5, 8, 2, 3, 7, 4, 3, 2, 0, 1, 5, 8, 3, 9, 9, 5, 2, 4, 3, 9, 9, 1, 1, 1, 5, 7, 6, 0, 6, 3, 1, 5, 1, 1, 6, 6, 3, 2, 3, 5, 4, 5, 1, 8, 1, 1, 9, 1, 2, 3, 5, 6, 5, 9
OFFSET
1,1
COMMENTS
See A201564 for a guide to related sequences. The Mathematica program includes a graph.
EXAMPLE
least: 0.166669163175400949565200320627761299158167...
greatest: 3.076894929246192023166693647327725773248...
MATHEMATICA
a = 1; c = 6;
f[x_] := a*x^2 + c; g[x_] := Csc[x]
Plot[{f[x], g[x]}, {x, 0, Pi}, {AxesOrigin -> {0, 0}}]
r = x /. FindRoot[f[x] == g[x], {x, .1, .2}, WorkingPrecision -> 110]
RealDigits[r] (* A201572 *)
r = x /. FindRoot[f[x] == g[x], {x, 3.0, 3.1}, WorkingPrecision -> 110]
RealDigits[r] (* A201573 *)
PROG
(PARI) a=1; c=6; solve(x=3, 3.1, a*x^2 + c - 1/sin(x)) \\ G. C. Greubel, Aug 21 2018
CROSSREFS
Cf. A201564.
Sequence in context: A106401 A332329 A011200 * A021329 A244809 A316554
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Dec 03 2011
EXTENSIONS
Terms a(87) onward corrected by G. C. Greubel, Aug 21 2018
STATUS
approved