A309164 Least k such that the rank of the elliptic curve y^2 = x * (x+1) * (x+k) is n.
2, 7, 31, 627, 15991
Offset: 0
Links
- H. Mishima, Tables of Elliptic Curves
Programs
-
PARI
{a(n) = my(k=2); while(ellanalyticrank(ellinit([0, k+1, 0, k, 0]))[1]<>n, k++); k}