cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A201577 Decimal expansion of greatest x satisfying x^2 + 8 = csc(x) and 0 < x < Pi.

Original entry on oeis.org

3, 0, 8, 4, 4, 6, 4, 1, 4, 0, 5, 6, 4, 3, 8, 0, 8, 4, 9, 4, 5, 9, 1, 9, 0, 5, 9, 5, 3, 6, 4, 6, 4, 6, 0, 2, 1, 8, 3, 3, 5, 2, 0, 6, 1, 4, 9, 0, 4, 5, 8, 6, 4, 7, 6, 8, 3, 8, 8, 2, 8, 5, 6, 2, 6, 8, 3, 0, 8, 4, 7, 2, 4, 3, 6, 7, 1, 4, 1, 4, 6, 2, 8, 5, 9, 3, 5, 3, 3, 4, 0, 8, 3, 2, 7, 8, 3, 5, 8
Offset: 1

Views

Author

Clark Kimberling, Dec 03 2011

Keywords

Comments

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

Examples

			least:  0.125081922635997441289177701653785707187...
greatest:  3.084464140564380849459190595364646021...
		

Crossrefs

Cf. A201564.

Programs

  • Mathematica
    a = 1; c = 8;
    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]   (* A201576 *)
    r = x /. FindRoot[f[x] == g[x], {x, 3.0, 3.1}, WorkingPrecision -> 110]
    RealDigits[r]   (* A201577 *)
  • PARI
    a=1; c=8; solve(x=3, 3.1, a*x^2 + c - 1/sin(x)) \\ G. C. Greubel, Aug 21 2018