OFFSET
0,4
COMMENTS
Conjecture: a(n) exists for any n >= 0. Equivalently, each integer can be written as x^3 + y^3 - (z^3 + w^3) with x,y,z,w nonnegative integers.
This is stronger than Sierpinski's conjecture which states that any integer is a sum of four integer cubes.
LINKS
Zhi-Wei Sun, Table of n, a(n) for n = 0..10000
EXAMPLE
a(41) = 127 with 41 = 41^3 + 128^3 - 49^3 -127^3.
a(130) = 143 with 130 = 37^3 + 169^3 - 125^3 - 143^3.
a(4756) = 533 with 4756 = 265^3 + 538^3 - 284^3 - 533^3.
a(5134) = 389 with 5134 = 19^3 + 418^3 - 242^3 - 389^3.
MATHEMATICA
CQ[n_]:=IntegerQ[n^(1/3)];
tab={}; Do[m=0; Label[bb]; k=m^3; Do[If[CQ[n+k+x^3-y^3], tab=Append[tab, m]; Goto[aa]], {x, 0, m}, {y, 0, ((n+k+x^3)/2)^(1/3)}]; m=m+1; Goto[bb]; Label[aa], {n, 0, 100}]; Print[tab]
CROSSREFS
KEYWORD
nonn
AUTHOR
Zhi-Wei Sun, Feb 08 2022
STATUS
approved