A319052 Numbers that are not the sum of {2 squares, a nonnegative cube, and a nonnegative k-th power with k >= 17}.
23, 71, 120, 312, 455, 2136, 99295
Offset: 1
Links
- W. Jagy and I. Kaplansky, Sums of Squares, Cubes and Higher Powers, Experimental Mathematics, vol. 4 (1995), pp. 169-173.
Programs
-
Mathematica
n=100000; t=Union@Flatten@Table[x^2+y^2+z^3+w^17, {x,0,n^(1/2)}, {y,x,(n-x^2)^(1/2)}, {z,0,(n-x^2-y^2)^(1/3)}, {w,0,(n-x^2-y^2-z^3)^(1/17)}]; Complement[Range[0,n], t]
Comments