OFFSET
1,1
COMMENTS
a(44) > 10^6, a(45) = 16384, a(52) = 120409, a(66)=550624.
Conjecture: For all n > 3, a(n) is not prime.
EXAMPLE
a(7) = 74 because 74 is the least k such that the elliptic curve y^2 = x^3 - 74*x + 1 has 7 integral solutions with nonnegative y: {{-8,9}, {-3,14}, {0,1}, {9,8}, {12,29}, {28,141}, {1369,50652}}.
PROG
(Magma)
SetClassGroupBounds("GRH");
max_n := 15;
max_k := 100;
sols := [**];
for k in [1..max_k] do
Append(~sols, [k, #IntegralPoints(EllipticCurve([0, 0, 0, -k, 1]))]);
end for;
for n in [1..max_n] 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,more
AUTHOR
Zhining Yang, Mar 03 2026
STATUS
approved
