A336226 Values z of primitive solutions (x, y, z) to the Diophantine equation x^3 + y^3 + 2*z^3 = 1458.
1, -3, 4, 9, -10, -12, 16, 21, 25, 37, -47, -48, 49, 64, -75, -87, 88, 100, 105, 121, 134, -147, 169, 172, -192, 196, -241, -243, 256, 289, -300, 361, -363, 400, 443, 484, -507, 529, 541, -588, 625, 676, -699, 732, -759, -768, 777, 784, 841, -867, 897, 961
Offset: 1
Keywords
Examples
5^3 + 11^3 + 2 * 1^3 = 1458, 1 is a term. (-1)^3 + (11)^3 + 2 * (4)^3 = 1458, 4 is a term.
References
- R. K. Guy, Unsolved Problems in Number Theory, D5.
Programs
-
Mathematica
Clear[t] t = {}; Do[y = (1458 - x^3 - 2 z^3)^(1/3) /. (-1)^(1/3) -> -1; If[IntegerQ[y] && GCD[x, y, z] == 1, AppendTo[t, z]], {z, -980, 980}, {x, -25319, 25319}] u = Union@t; v = Table[(-1)^n*Floor[(n + 1)/2], {n, 0, 2000}]; Select[v, MemberQ[u, #] &]
Comments