login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A336226 Values z of primitive solutions (x, y, z) to the Diophantine equation x^3 + y^3 + 2*z^3 = 1458. 0
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 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Terms are arranged in order of increasing absolute value (if equal, the negative number comes first).
(11 + 3*n - 9*n^2)^3 + (11 + 3*(n + 1) - 9*(n + 1)^2)^3 + 2*(3*n + 1)^6 = 1458, the numbers of the form (3*n + 1)^2 are terms of the sequence.
(11 - 3*n - 9*n^2)^3 + (11 - 3*(n + 1) - 9*(n + 1)^2)^3 + 2*(3*n + 2)^6 = 1458, the numbers of the form (3*n + 2)^2 are also terms of the sequence.
Thus, A001651(n)^2 are terms of the sequence. There is an infinity of nontrivial solutions to the equation.
REFERENCES
R. K. Guy, Unsolved Problems in Number Theory, D5.
LINKS
EXAMPLE
5^3 + 11^3 + 2 * 1^3 = 1458, 1 is a term.
(-1)^3 + (11)^3 + 2 * (4)^3 = 1458, 4 is a term.
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, #] &]
CROSSREFS
Sequence in context: A275893 A325196 A242661 * A339658 A344297 A344292
KEYWORD
sign
AUTHOR
XU Pingya, Jul 17 2020
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 12:33 EDT 2024. Contains 371969 sequences. (Running on oeis4.)