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!)
A201586 Decimal expansion of greatest x satisfying 3*x^2 = csc(x) and 0 < x < Pi. 3

%I #13 Aug 23 2018 10:13:09

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

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

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

%N Decimal expansion of greatest x satisfying 3*x^2 = 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="/A201586/b201586.txt">Table of n, a(n) for n = 1..10000</a>

%e least: 0.71361154106545351696712348748482823114400555...

%e greatest: 3.10705708466927913942133639758902326551860...

%t a = 3; c = 0;

%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, .7, .8}, WorkingPrecision -> 110]

%t RealDigits[r] (* A201585 *)

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

%t RealDigits[r] (* A201586 *)

%o (PARI) a=3; c=0; solve(x=3.1, 3.14, a*x^2 + c - 1/sin(x)) \\ _G. C. Greubel_, Aug 22 2018

%Y Cf. A201564.

%K nonn,cons

%O 1,1

%A _Clark Kimberling_, Dec 03 2011

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 August 16 19:31 EDT 2024. Contains 375177 sequences. (Running on oeis4.)