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.

A027664 a(n)/10000000 gives sqrt(n) to 7 places.

Original entry on oeis.org

10000000, 14142136, 17320508, 20000000, 22360680, 24494897, 26457513, 28284271, 30000000, 31622777, 33166248, 34641016, 36055513, 37416574, 38729833, 40000000, 41231056, 42426407, 43588989, 44721360, 45825757, 46904158, 47958315, 48989795, 50000000, 50990195
Offset: 1

Views

Author

Keywords

Programs

  • Maple
    lprint(round(evalf(10000000*sqrt(n))));
  • Python
    from math import isqrt
    def A027664(n): return (m:=isqrt(k:=n*10**14))+int(k-m*(m+1)>=1) # Chai Wah Wu, Jul 31 2022