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”).

A309031
Numbers k for which rank of the elliptic curve y^2=x^3+k*x is 4.
4
1918, 5190, 6123, 6953, 9603, 10759, 12483, 13398, 14673, 14795, 15910, 15934, 16238, 17753, 18278, 18705, 18814, 20148, 20398, 20658, 23180, 23953, 24475, 25988, 26809, 28633, 29274, 30340, 30688, 31073, 31098, 31174, 32118, 33218, 33278, 34804, 36955, 37214, 37298
OFFSET
1,1
PROG
(PARI) for(k=1, 1e4, if(ellanalyticrank(ellinit([0, 0, 0, k, 0]))[1]==4, print1(k", ")))
(Magma) for k in[1..10000] do if Rank(EllipticCurve([0, 0, 0, k, 0])) eq 4 then print k; end if; end for; // Vaclav Kotesovec, Jul 08 2019
CROSSREFS
Cf. A002158 (rank 0), A002159 (rank 1), A076329 (rank 2), A309030 (rank 3), this sequence (rank 4).
Sequence in context: A163863 A251917 A222928 * A361347 A077087 A179696
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jul 08 2019
STATUS
approved