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.

A217458 Decimal expansion of 2^(Pi*sqrt(2)).

Original entry on oeis.org

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

Views

Author

Jani Melik, Oct 03 2012

Keywords

Examples

			21.7490870543774583340992082660113952338588408897418426759...
		

Crossrefs

Cf. A063448 (Pi * sqrt(2)).

Programs

  • Magma
    SetDefaultRealField(RealField(100)); R:=RealField(); 2^(Pi(R)*Sqrt(2)); // G. C. Greubel, Oct 05 2018
  • Mathematica
    RealDigits[2^(Pi*Sqrt[2]), 10, 100][[1]] (* G. C. Greubel, Oct 05 2018 *)
  • Maxima
    fpprec : 100; ev(bfloat(2^(%pi*sqrt(2)))); /* Martin Ettl, Oct 04 2012 */
    
  • PARI
    default(realprecision, 100); 2^(Pi*sqrt(2)) \\ G. C. Greubel, Oct 05 2018
    
  • Sage
    2^(pi*sqrt(2)).n(digits=100)