OFFSET
1,1
COMMENTS
Equivalently, number of different values of x in the integral solutions to the Mordell's equation y^2 = x^3 + n^3.
EXAMPLE
a(2) = 4 because the solutions to y^2 = x^3 + 2^3 with y >= 0 are (-2,0), (1,3), (2,4), and (46,312).
PROG
(SageMath) [(len(EllipticCurve(QQ, [0, n^3]).integral_points(both_signs=True))+1)/2 for n in range(1, 61)] # Lucas A. Brown, Sep 04 2022
CROSSREFS
KEYWORD
nonn,hard
AUTHOR
Jianing Song, Aug 23 2022
EXTENSIONS
a(21) corrected and a(22)-a(60) by Lucas A. Brown, Sep 04 2022
a(61)-a(100) from Max Alekseyev, Jun 01 2023
STATUS
approved