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.

A011547 Decimal expansion of sqrt(2) truncated to n places.

Original entry on oeis.org

1, 14, 141, 1414, 14142, 141421, 1414213, 14142135, 141421356, 1414213562, 14142135623, 141421356237, 1414213562373, 14142135623730, 141421356237309, 1414213562373095, 14142135623730950
Offset: 0

Views

Author

Keywords

References

  • W. Rudin, Principles of Mathematical Analysis, 3rd ed., McGraw-Hill, 1976.

Crossrefs

Cf. A011548.

Programs

  • Mathematica
    With[{sqrt2=N[Sqrt[2],30]},Table[IntegerPart[sqrt2 10^n],{n,0,20}]] (* Harvey P. Dale, Sep 22 2011 *)
    IntegerPart[Table[N[Sqrt[2], k] 10^(k - 1), {k, 20}]] (* Vincenzo Librandi, Aug 16 2013 *)