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.

A289504 Decimal expansion of 2*(1+3^(3/2)/(2*Pi)).

Original entry on oeis.org

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

Views

Author

R. J. Mathar, Jul 07 2017

Keywords

Examples

			3.6539866862653761485339794949389083241921...
		

Programs

  • Maple
    2*(1+3*sqrt(3)/2/Pi); evalf(%) ;
  • Mathematica
    RealDigits[2(1+3^(3/2)/(2Pi)),10,120][[1]] (* Harvey P. Dale, Nov 05 2019 *)
  • PARI
    2+3*sqrt(3)/Pi \\ Charles R Greathouse IV, Oct 01 2022
  • Python
    from mpmath import *
    mp.dps=86
    C=2*(1 + 3*sqrt(3)/(2*pi))
    print([int(n) for n in list(str(C).replace('.', ''))]) # Indranil Ghosh, Jul 08 2017
    

Formula

Equals 2*(1+A086089).