login
A395608
a(n) = least prime p such that Mordell's equation y^2 = x^3 + p has exactly n integral solutions with y >= 0.
0
7, 2, 101, 37, 89, 1009, 73, 58049, 17, 23417, 15193, 7057, 4481, 92563129, 2089, 76033889, 14704649, 7150249, 4251817, 3543193, 11228689, 3193361
OFFSET
0,1
COMMENTS
a(31) = 3120110801, a(32) = 10438333993.
EXAMPLE
a(4) = 89 because 89 is the least prime p such that y^2 = x^3 + p has 4 integral solutions with nonnegative y: {{-4, 5}, {-2, 9}, {10, 33}, {55, 408}}.
a(5) = 1009 because 1009 is the least prime p such that y^2 = x^3 + p has 5 integral solutions with nonnegative y: {{-10, 3}, {6, 35}, {8, 39}, {1355, 49878}, {2520, 126503}}.
PROG
(Magma)
SetClassGroupBounds ("GRH");
sols := [**];
primes := [p : p in [2..2000] | IsPrime(p)];
for k in primes do
Append(~sols, [k, #IntegralPoints(EllipticCurve([0, 0, 0, 0, k]))]);
end for;
for n in [0..6] do
for sol in sols do
if sol[2] eq n then
printf "a(%o) = %o\n", n, sol[1];
break;
end if;
end for;
end for;
CROSSREFS
KEYWORD
nonn,hard,more
AUTHOR
Zhining Yang, Jun 02 2026
STATUS
approved