A271876 Numbers n such that 3^n is not of the form x^3 + y^3 + z^3 where x, y, z > 0.
0, 2, 3, 5, 8, 11, 14, 17, 20
Offset: 1
Examples
21 is not a term because 3^21 = (3^5)^3 + (6*3^5)^3 + (8*3^5)^3. 22 is not a term because 3^22 = (3^7)^3 + (3^7)^3 + (3^7)^3. 23 is not a term because 3^23 = 1658^3 + 3202^3 + 3843^3.
Programs
-
Mathematica
Select[Range[0, 20], Length[PowersRepresentations[3^#, 3, 3] /. {{0, } -> Nothing}] == 0 &] (* Michael De Vlieger, Apr 16 2016 *)
Comments