A179126 Positive integers m for which the torsion subgroup of the elliptic curve y^2 = x^3 + m has order 3.
4, 9, 16, 25, 36, 49, 81, 100, 121, 144, 169, 196, 225, 256, 289, 324, 361, 400, 441, 484, 529, 576, 625, 676, 784, 841, 900, 961, 1024, 1089, 1156, 1225, 1296, 1369, 1444, 1521, 1600, 1681, 1764, 1849, 1936, 2025, 2116, 2209, 2304, 2401, 2500, 2601, 2704
Offset: 1
Links
- Jianing Song, Table of n, a(n) for n = 1..10000
- J. Gebel, Integer points on Mordell curves [Cached copy, after the original web site tnt.math.se.tmu.ac.jp was shut down in 2017]
- Joseph H. Silverman, The Arithmetic of Elliptic Curves
Programs
-
PARI
isA179126(n) = my(k=ispower(n)); !(k%2) && (k%6) \\ Jianing Song, Aug 25 2022
-
Sage
is_A179126 = lambda n: EllipticCurve([0,n]).torsion_order() == 3 # D. S. McNeil, Jan 04 2011
Comments