login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A372543
Least k such that the rank of the elliptic curve y^2 = x^3 - k^2*x + 1 is n, or -1 if no such k exists.
1
0, 1, 2, 4, 8, 17, 61, 347, 3778, 11416
OFFSET
0,3
COMMENTS
This family of curves quickly reaches a moderate value of rank with a relatively small parameter k.
By heuristic search (see links), a(10) <= 216493 and a(11) <= 1448203.
LINKS
Anna Antoniewicz, On a family of elliptic curves, (2005) Iagellonicae Acta Mathematica, XLIII.
Jose Aranda, Non sequential search for upper bounds (PARI-GP Script)
Cecylia Bocovich, Elliptic Curves of High Rank, (2012) Macalester College, Science Honors Projects.
PROG
(PARI) a(n, startAt=0)=for(k=startAt, oo, my(t=ellrank(ellinit([-k^2, +1]))); if(t[2]<n, next); if(t[1]>n, warning("k=", k, " has rank in ", t[1..2]); next); if(t[1]<n || t[2]>n, error("Cannot determine if a(", n, ") is ", k, " or larger; rank is in ", t[1..2])); return(k)) \\ Charles R Greathouse IV, Jul 08 2024
(PARI) \\ See Aranda link.
KEYWORD
nonn,hard,more
AUTHOR
Jose Aranda, Jul 04 2024
STATUS
approved