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.
0, 1, 2, 4, 8, 17, 61, 347, 3778, 11416
Offset: 0
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.
Programs
-
PARI
a(n,startAt=0)=for(k=startAt, oo, my(t=ellrank(ellinit([-k^2, +1]))); if(t[2]
n, warning("k=",k," has rank in ",t[1..2]); next); if(t[1] 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.
Comments