login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A201673 Decimal expansion of greatest x satisfying 6*x^2 - 1 = csc(x) and 0<x<Pi. 3
3, 1, 2, 4, 2, 1, 9, 9, 6, 2, 7, 0, 6, 0, 8, 1, 5, 9, 4, 8, 9, 8, 9, 0, 6, 2, 1, 0, 9, 2, 0, 2, 8, 5, 4, 6, 6, 3, 5, 1, 1, 0, 2, 3, 7, 1, 5, 8, 1, 0, 4, 2, 3, 4, 1, 4, 5, 4, 2, 2, 1, 2, 3, 6, 0, 3, 6, 9, 3, 1, 5, 6, 3, 5, 3, 5, 6, 3, 8, 9, 6, 0, 0, 3, 7, 0, 8, 8, 0, 2, 3, 5 (list; constant; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
See A201564 for a guide to related sequences. The Mathematica program includes a graph.
LINKS
EXAMPLE
least: 0.66173655716974422624182983709400260774...
greatest: 3.12421996270608159489890621092028546...
MATHEMATICA
a = 6; c = -1;
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, .6, .7}, WorkingPrecision -> 110]
RealDigits[r] (* A201672 *)
r = x /. FindRoot[f[x] == g[x], {x, 3.1, 3.14}, WorkingPrecision -> 110]
RealDigits[r] (* A201673 *)
PROG
(PARI) a=6; c=-1; solve(x=3, 3.14, a*x^2 + c - 1/sin(x)) \\ G. C. Greubel, Sep 11 2018
CROSSREFS
Cf. A201564.
Sequence in context: A332397 A004608 A366936 * A343764 A117905 A133445
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Dec 04 2011
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified March 28 18:04 EDT 2024. Contains 371254 sequences. (Running on oeis4.)