A376243 Nonnegative integers N = x*y*z = x+y+z for some rational x, y, z.
0, 6, 7, 9, 13, 14, 15, 16, 19
Offset: 1
Examples
The first few terms correspond to the following solutions (|x| <= |y| <= |z|): N | x | y | z -----+---------+---------+--------- 0 | 0 | 0 | 0 (or any rational y = -z). 6 | 1 | 2 | 3 (and also {25/21, 54/35, 49/15}). 7 | 7/6 | 4/3 | 9/2 9 | 1/2 | 4 | 9/2 13 | 36/77 | 121/42 | 637/66 14 | 1/3 | 9 | 14/3 15 | 1/2 | 5/2 | 12 16 | -2/3 | -4/3 | 18 19 | 121/234 | 324/143 |3211/198 ... All terms of A054000 (2*n^2-2: 0, 6, 16, 30, 48, 70, 96, 126, 160, 198, ...) are in the sequence, as product and sum of the triple (2*n^2, 1/n - 1, -1/n - 1).
Links
- Allan MacLeod, Elliptic Curves in Recreational Number Theory, arXiv:1610.03430 [math.NT], Oct. 2016.
- Victor Miller and others, in reply to Keith F. Lynch, Re: Integer sums and products, math-fun mailing list (available for subscribers), Sep. 2024.
Crossrefs
Programs
-
PARI
select( {is_A376243(n)=!n||ellrank(ellinit([0,1,0,8,16]*n^2))}, [0..30]) \\ Assuming there's a rational solution iff the elliptic curve has rank > 0. - M. F. Hasler, Sep 23 2024
Comments