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.

A176581 n^3+Smallest square, (Smallest square >= n^3).

Original entry on oeis.org

0, 2, 17, 63, 128, 269, 441, 704, 1041, 1458, 2024, 2700, 3492, 4406, 5553, 6856, 8192, 9954, 11761, 13748, 16100, 18670, 21464, 24488, 27748, 31250, 35265, 39564, 44153, 49038, 54225, 59720, 65892, 72037, 78905, 86139, 93312, 101729, 110097, 118855
Offset: 0

Views

Author

Keywords

Comments

2^3+9=17,3^3+36=63,..

Crossrefs

Programs

  • Maple
    seq(n^3 + ceil(sqrt(n^3))^2, n=0..100); # Robert Israel, Jun 18 2018
  • Mathematica
    r[n_]:=n^3;f[n_]:=r[n]+Ceiling[Sqrt[r[n]]]^2;Table[f[n],{n,0,5!}]

Extensions

Offset corrected by Robert Israel, Jun 18 2018