A272072 Nonnegative integers n such that 10^n is not of the form x^3 + y^3 + z^3 where x > y > z > 0.
0, 1, 2, 3, 4, 5, 7, 10
Offset: 1
Examples
10^6 = 35^3 + 70^3 + 85^3. 10^8 = 196^3 + 312^3 + 396^3. 10^9 = 84^3 + 658^3 + 894^3. 10^11 = 1960^3 + 3120^3 + 3960^3. 10^12 = 9^3 + 2991^3 + 9910^3. 10^13 = 6150^3 + 14575^3 + 18825^3.
Programs
-
Mathematica
Select[Range[0, 10], NoneTrue[PowersRepresentations[10^#, 3, 3], #[[3]] > #[[2]] > #[[1]] > 0 &] &] (* Michael De Vlieger, Apr 20 2016, Version 10 *)
Comments