OFFSET
1,1
REFERENCES
C. G. J. Jacobi, Gesammelte Werke, vol. 6, 1969, Chelsea, NY, p. 352.
LINKS
T. D. Noe, Table of n, a(n) for n=1..1000
C. G. J. Jacobi, Gesammelte Werke.
FORMULA
MAPLE
N:= 1000: # to get all terms <= N
G3:= series(add(x^(i^3), i=1..floor(N^(1/3)))^3, x, N+1):
G2:= series(add(x^(i^3), i=0..floor(N^(1/3)))^2, x, N+1):
select(t -> coeff(G3, x, t) > 0 and coeff(G2, x, t) = 0, [$1..N]); # Robert Israel, Dec 12 2016
MATHEMATICA
Select[Range[500], (pr = PowersRepresentations[#, 3, 3]; pr != {} && Count[pr, r_ /; (Times @@ r) == 0] == 0) &][[1 ;; 55]] (* Jean-François Alcover, Apr 08 2011 *)
CROSSREFS
KEYWORD
nonn,nice,easy
AUTHOR
Arlin Anderson (starship1(AT)gmail.com)
STATUS
approved