OFFSET
0,1
COMMENTS
For n>3, the number of integral points on y = x^3 - (n^2)*x + 1 is at least 11. These 11 points correspond to the solutions x = {-1, 0, n, -n, n + 2, -n + 2, n^2 - 1, n^2 - 2n + 2, n^2 + 2n + 2, n^4 + 2n, n^4 - 2n}.
LINKS
Robert Israel, Table of n, a(n) for n = 0..209
EXAMPLE
a(0) = 3 because the integer points on y^2 = x^3 + 1 are (-1, 0), (0, 1), and (2, 3).
PROG
(Sage)
def f(n):
R.<x, y> = QQ[]
E = EllipticCurve(y^2 - x^3 + n^2*x - 1)
return len(E.integral_points(both_signs=false))
[f(x) for x in range(40)] # Robert Israel, Apr 23 2021
CROSSREFS
KEYWORD
nonn
AUTHOR
Morris Neene, Jun 14 2015
EXTENSIONS
More terms from Robert Israel, Apr 23 2021
STATUS
approved