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.

A289503 Decimal expansion of 3/sqrt(Pi).

Original entry on oeis.org

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

Views

Author

R. J. Mathar, Jul 07 2017

Keywords

Examples

			1.6925687506432688608442383546823177...
		

References

  • R. K. Guy, Unsolved Problems in Number Theory, Springer, 1st edition, 1981. See section E10.

Crossrefs

Cf. A087197 (1/sqrt(Pi)).

Programs

  • Maple
    3/sqrt(Pi); evalf(%) ;
  • Mathematica
    First[RealDigits[3/Sqrt[Pi], 10, 100]] (* Paolo Xausa, Apr 29 2024 *)
  • PARI
    3/sqrt(Pi) \\ Charles R Greathouse IV, Oct 01 2022
  • Python
    from mpmath import mp, sqrt, pi
    mp.dps=90
    print([int(z) for z in list(str(3/sqrt(pi)).replace('.', '')[:-2])]) # Indranil Ghosh, Jul 08 2017
    

Formula

Equals 3*A087197.