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.

A027661 Fractional part of decimal expansion of sqrt(n) to 3 places.

Original entry on oeis.org

0, 414, 732, 0, 236, 449, 646, 828, 0, 162, 317, 464, 606, 742, 873, 0, 123, 243, 359, 472, 583, 690, 796, 899, 0, 99, 196, 292, 385, 477, 568, 657, 745, 831, 916, 0, 83, 164, 245, 325, 403, 481, 557, 633, 708, 782, 856, 928, 0
Offset: 1

Views

Author

Keywords

References

  • L. J. Comrie, Chambers's Shorter Six-Figure Mathematical Tables, Chambers, Edinburgh, 1950, Table VIII.

Programs

  • Maple
    a:= n-> round(1000*frac(evalf(sqrt(n)))):
    seq(a(n), n=1..100);  # Alois P. Heinz, Oct 16 2013
  • Mathematica
    Round[FractionalPart[Sqrt[Range[100]]]*1000] (* Paolo Xausa, May 02 2024 *)