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.

A176583 n^2+Smallest cube, (Smallest cube >= n^2).

Original entry on oeis.org

0, 2, 12, 36, 43, 52, 100, 113, 128, 206, 225, 246, 360, 385, 412, 568, 599, 632, 667, 873, 912, 953, 996, 1258, 1305, 1354, 1405, 1458, 1784, 1841, 1900, 1961, 2355, 2420, 2487, 2556, 2627, 3097, 3172, 3249, 3328, 3409, 3961, 4046, 4133, 4222, 4313, 4953
Offset: 1

Views

Author

Keywords

Comments

4+8=12, 9+27=36, 16+27=43,..

Crossrefs

Programs

  • Mathematica
    r[n_]:=n^2;f[n_]:=r[n]+Ceiling[r[n]^(1/3)]^3;Table[f[n],{n,0,5!}]
    Table[n^2+Ceiling[Surd[n^2,3]]^3,{n,0,50}] (* Harvey P. Dale, Jun 04 2016 *)