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.

A216701 Decimal expansion of sqrt(2)/(2*log(2)).

Original entry on oeis.org

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

Views

Author

John W. Nicholson, Sep 16 2012

Keywords

Examples

			1.020139446596789481748279105532262769155098088682029887792564377467...
		

Crossrefs

Cf. A002193 (sqrt(2)), A016627 (2*log(2)).

Programs

  • Magma
    SetDefaultRealField(RealField(100)); Sqrt(2)/(2*Log(2)); // G. C. Greubel, Oct 05 2018
  • Mathematica
    RealDigits[Sqrt[2]/(2*Log[2]), 10, 105][[1]] (* T. D. Noe, Sep 17 2012 *)
  • PARI
    default(realprecision, 100); sqrt(2)/(2*log(2)) \\ G. C. Greubel, Oct 05 2018