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.

A197730 Decimal expansion of 3*Pi/(4+Pi).

Original entry on oeis.org

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

Views

Author

Clark Kimberling, Oct 17 2011

Keywords

Comments

Least x>0 such that sin(bx)=cos(cx) (and also sin(cx)=cos(bx)), where b=2/3 and c=Pi/6; see the Mathematica program for a graph and A197682 for a discussion and guide to related sequences.

Examples

			1.3197025394653278722685641235411401513975623...
		

Crossrefs

Cf. A197682.

Programs

  • Mathematica
    b = 2/3; c = Pi/6;
    t = x /. FindRoot[Sin[b*x] == Cos[c*x], {x, 1.131, 1.132}]
    N[Pi/(2*b + 2*c), 110]
    RealDigits[%]  (* A197730 *)
    Simplify[Pi/(2*b + 2*c)]
    Plot[{Sin[b*x], Cos[c*x]}, {x, 0, Pi/2}]