A272341 Numbers n such that 6^n is not of the form (x^3 + y^3 + z^3) / 3 where x > y > z > 0.
0, 1, 2, 3, 5, 6, 8, 9, 12, 15
Offset: 1
Examples
2 is a term because 3*6^2 = 108 is not a term of A024975. 4 is not a term because 3*6^4 = 3888 = 1^3 + 8^3 + 15^3. 11 is not a term because 3*6^11 = 1088391168 = 48^3 + 124^3 + 1028^3. 18 is not a term because 3*6^18 = 304679870005248 = 38322^3 + 47840^3 + 51790^3.
Programs
-
Mathematica
Select[Range@ 12, Length[PowersRepresentations[3*6^#, 3, 3] /. {x_, y_, z_} /; Or[x == 0, x == y == z] -> Nothing] == 0 &] (* Michael De Vlieger, Apr 27 2016, Version 10.2 *)
Comments