OFFSET
1,1
COMMENTS
See A201564 for a guide to related sequences. The Mathematica program includes a graph.
LINKS
G. C. Greubel, Table of n, a(n) for n = 1..10000
EXAMPLE
least: 0.46758094406347136736141927076686538859402537...
greatest: 3.05315172252487021180415505317811374596224...
MATHEMATICA
a = 1; c = 2;
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, .46, .47}, WorkingPrecision -> 110]
RealDigits[r] (* A201564 *)
r = x /. FindRoot[f[x] == g[x], {x, 3.0, 3.1}, WorkingPrecision -> 110]
RealDigits[r] (* A201565 *)
(* Program 2: implicit surface of u*x^2+v=csc(x) *)
f[{x_, u_, v_}] := u*x^2 + v - Csc[x];
t = Table[{u, v, x /. FindRoot[f[{x, u, v}] == 0, {x, .1, 1}]}, {v, 0, 1}, {u, 2 + v, 10}];
ListPlot3D[Flatten[t, 1]] (* for A201564 *)
PROG
(PARI) a=1; c=2; solve(x=3, 3.1, a*x^2 + c - 1/sin(x)) \\ G. C. Greubel, Aug 21 2018
CROSSREFS
KEYWORD
nonn,cons
AUTHOR
Clark Kimberling, Dec 03 2011
STATUS
approved