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.

A131566 Decimal expansion of (e*Pi*phi)^2.

Original entry on oeis.org

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

Views

Author

Omar E. Pol, Aug 27 2007

Keywords

Comments

phi = (5^(1/2) + 1)/2 = (1 + sqrt(5))/2.

Examples

			190.925523334...
		

Crossrefs

Programs

  • Mathematica
    phi=(5^(1/2)+1)/2;RealDigits[N[(Pi*E*phi)^2,6! ]][[1]] (* Vladimir Joseph Stephan Orlovsky, Jun 18 2009 *)
    RealDigits[(E*Pi*GoldenRatio)^2,10,120][[1]] (* Harvey P. Dale, May 01 2017 *)
  • PARI
    { default(realprecision, 20080); phi = (1 + sqrt(5))/2; x=(exp(1)*Pi*phi)^2/100; for (n=3, 20000, d=floor(x); x=(x-d)*10; write("b131566.txt", n, " ", d)); } \\ Harry J. Smith, Apr 27 2009

Extensions

More terms from Harry J. Smith, Apr 26 2009
Fixed my PARI program, had -n Harry J. Smith, May 19 2009