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.

A298742 Decimal expansion of (1/2)(1 + sqrt(5 + 4*sqrt(2))).

Original entry on oeis.org

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

Views

Author

Clark Kimberling, Feb 13 2018

Keywords

Comments

Positive zero of x^2 - x - 1 - sqrt(2).

Examples

			2.1322418823119001957...
		

Crossrefs

Programs

  • Magma
    SetDefaultRealField(RealField(100)); (1/2)*(1 + Sqrt(5 + 4*Sqrt(2))); // G. C. Greubel, Aug 20 2018
  • Mathematica
    r = (1/2)*(1 + Sqrt[5 + 4*Sqrt[2]])
    RealDigits[N[r, 100], 10][[1]];  (* A298742 *)
  • PARI
    (1/2)*(1 + sqrt(5 + 4*sqrt(2))) \\ Altug Alkan, Apr 12 2018