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.

A086306 Decimal expansion of (280*(3 - sqrt(3)))/(840 - 280*sqrt(3) + 4*sqrt(5) - sqrt(10)).

Original entry on oeis.org

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

Views

Author

Eric W. Weisstein, Jul 15 2003

Keywords

Comments

Traveling salesman constant phi.

Examples

			0.983974862071875415877673258875009931150787481....
		

Programs

  • Magma
    R:= RealField(100); SetDefaultRealField(R); (280*(3-Sqrt(3)))/(840 -280*Sqrt(3)+4*Sqrt(5)-Sqrt(10)); // G. C. Greubel, Mar 10 2018
  • Mathematica
    RealDigits[(280*(3-Sqrt[3]))/(840-280*Sqrt[3]+4*Sqrt[5]-Sqrt[10]), 10, 100][[1]] (* G. C. Greubel, Mar 10 2018 *)
  • PARI
    default(realprecision, 100); (280*(3-sqrt(3)))/(840-280*sqrt(3) +4*sqrt(5)-sqrt(10)) \\ G. C. Greubel, Mar 10 2018