OFFSET
1,2
COMMENTS
Numbers k such that there exist rationals x, d such that k = x*(x^2-d^2).
Numbers k such that the elliptic curve s^3 + t^2 - k^2 has rational points other than (s,t) = (0, +/- k). Namely, if (s,t) is a rational point on the curve with s <> 0, then we can take x=k/s, d=t/s.
If k is in the sequence, then so is j^3*k for any j.
LINKS
Robert Israel, Table of n, a(n) for n = 1..1231
Math StackExchange, Prime numbers as the product of an arithmetic sequence
EXAMPLE
a(5) = 10 is in the sequence because (1, 5/2, 4) are three rationals in arithmetic progression whose product is 10.
a(6) = 11 is in the sequence because (-9/2,-11/12,8/3) are three rationals in arithmetic progression whose product is 11.
PROG
(Sage)
R = range(1, 100);
S = [];
for r in R:
E = EllipticCurve([0, 0, 0, 0, r^2]);
if (E.torsion_subgroup().order() > 3) or (E.rank(only_use_mwrank=False) > 0):
S.append(r);
S
CROSSREFS
KEYWORD
nonn
AUTHOR
Robert Israel, Oct 22 2019
EXTENSIONS
More terms from Robert Israel, Mar 02 2020
STATUS
approved