A309060 Least k such that the rank of the elliptic curve y^2 = x^3 + k^2*x is n.
1, 3, 17, 627, 14637
Offset: 0
Examples
A309061(1) = 0. A309061(3) = 1. A309061(17) = 2.
Programs
-
PARI
{a(n) = my(k=1); while(ellanalyticrank(ellinit([0, 0, 0, k^2, 0]))[1]<>n, k++); k}
Formula
A309061(a(n)) = n.
Comments