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.

A034101 Numbers whose fractional part of square root starts with digit 5.

Original entry on oeis.org

21, 31, 43, 57, 73, 91, 92, 111, 112, 133, 134, 157, 158, 183, 184, 211, 212, 213, 241, 242, 243, 273, 274, 275, 307, 308, 309, 343, 344, 345, 381, 382, 383, 384, 421, 422, 423, 424, 463, 464, 465, 466, 507, 508, 509, 510, 553, 554, 555, 556, 601, 602, 603
Offset: 1

Views

Author

Patrick De Geest, Sep 15 1998

Keywords

Crossrefs

Cf. A034111.

Programs

  • Mathematica
    fp5Q[n_]:=Module[{rd=RealDigits[N[FractionalPart[Sqrt[n]]]]},rd[[2]]==0 && First[rd[[1]]]==5]; Select[Range[700],fp5Q] (* Harvey P. Dale, Jan 11 2013 *)