OFFSET
1,1
LINKS
MAPLE
read transforms; cub := series(add(q^(n^3), n=0..100), q, 1000001); t1 := series(cub^2, q, 2000); t2 := POWERS(t1, q, 2000); COMPl(t2);
MATHEMATICA
r[n_] := Reduce[x >= 0 && y >= 0 && n == x^3 + y^3, {x, y}, Integers]; Select[ Range[80], r[#] === False &] (* Jean-François Alcover, Nov 06 2012 *)
Select[Range@100, PowersRepresentations[#, 2, 3]=={}&] (* A much faster solution given by Giovanni Resta, Nov 06 2012 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
EXTENSIONS
Edited by N. J. A. Sloane, Sep 28 2007
STATUS
approved