login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A176581
n^3+Smallest square, (Smallest square >= n^3).
6
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,2
COMMENTS
2^3+9=17,3^3+36=63,..
LINKS
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!}]
CROSSREFS
KEYWORD
nonn
AUTHOR
EXTENSIONS
Offset corrected by Robert Israel, Jun 18 2018
STATUS
approved