OFFSET
1,1
COMMENTS
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
Josef Gebel, Integer points on Mordell curves. [Cached copy, after the original web site tnt.math.se.tmu.ac.jp was shut down in 2017]
Josef Gebel, Attila Pethö and Horst G. Zimmer, Computing integral points on Mordell's elliptic curves, Collectanea Mathematica, Vol. 48, No. 1-2 (1997), pp. 115-136; alternative link.
FORMULA
Sum_{n>=1} 1/a(n) = zeta(3) - zeta(6) = A002117 - A013664 = 0.1847138411... - Amiram Eldar, Nov 21 2020
MATHEMATICA
a[n_]:=(n + Floor[1/2 + Sqrt[n]])^3; Array[a, 50] (* Vincenzo Librandi, Apr 11 2020 *)
PROG
(PARI) isok(n) = !issquare(n) && ispower(n, 3); \\ Michel Marcus, Nov 02 2013
(PARI) a(n) = (n + (1+sqrtint(4*n))\2)^3; \\ Michel Marcus, Nov 02 2013
(Magma) [(n+Floor(1/2+Sqrt(n)))^3: n in [1..60]]; // Vincenzo Librandi, Apr 11 2020
CROSSREFS
KEYWORD
nonn
AUTHOR
Artur Jasinski, Jun 30 2010
EXTENSIONS
Exponent in the definition corrected by R. J. Mathar, Jul 20 2010
STATUS
approved