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.

Showing 1-2 of 2 results.

A143301 Decimal expansion of the Hall-Montgomery constant.

Original entry on oeis.org

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

Views

Author

Eric W. Weisstein, Aug 05 2008

Keywords

Comments

Named after Richard Roxby Hall and Hugh Lowell Montgomery. - Amiram Eldar, Aug 25 2020

Examples

			0.17150049314153606586...
		

References

  • Steven R. Finch, Mathematical Constants, Cambridge University Press, 2003, pp. 205-207.

Crossrefs

Programs

  • Mathematica
    RealDigits[1+Pi^2/6+2PolyLog[2,-Sqrt[E]],10,120][[1]] (* Harvey P. Dale, Jul 18 2013 *)
  • Python
    from mpmath import mp, pi, e, polylog, sqrt
    mp.dps=106
    print([int(z) for z in list(str(1 + pi**2/6 + 2* polylog(2, - sqrt(e)))[2:-1])]) # Indranil Ghosh, Jul 04 2017

Formula

Equals 1 + Pi^2/6 + 2*PolyLog(2, -sqrt(e)).
Equals (1 - A126689)/2. - Amiram Eldar, Aug 25 2020
Equals 1 - A246849. - Hugo Pfoertner, May 25 2024

A165361 Decimal expansion of log 2 times the negative of Granville-Soundararajan constant.

Original entry on oeis.org

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

Views

Author

Jonathan Vos Post, Sep 16 2009

Keywords

Comments

Given as formula and decimal expansion in p. 4 of Tao, citing Granville.

Examples

			-0.455397....
		

Programs

  • Mathematica
    RealDigits[ -Log[2]*(4*PolyLog[2, -Sqrt[E]] + Pi^2/3 + 1) , 10, 105] // First (* Jean-François Alcover, Feb 15 2013, after R. J. Mathar *)
  • PARI
    -log(2)*(Pi^2/3+4*polylog(2, -exp(1/2))+1) \\ Charles R Greathouse IV, Jul 18 2014
    
  • Python
    from mpmath import mp, pi, sqrt, polylog, log
    mp.dps=106
    C = -log(2)*(4*polylog(2, -sqrt(e)) + pi**2/3 + 1)
    print([int(n) for n in list(str(C)[2:-1])]) # Indranil Ghosh, Jul 03 2017

Formula

Equals log(2)*A126689 = A002162*A126689.

Extensions

More digits from R. J. Mathar, Sep 21 2009
Showing 1-2 of 2 results.