cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A336226 Values z of primitive solutions (x, y, z) to the Diophantine equation x^3 + y^3 + 2*z^3 = 1458.

Original entry on oeis.org

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

Views

Author

XU Pingya, Jul 17 2020

Keywords

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.

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.

Crossrefs

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, #] &]