OFFSET
1,3
COMMENTS
It appears that 1528 is the largest of 306 positive integers not in this sequence.
LINKS
FORMULA
Exponents in expansion of Product_{k>=1} (1 + x^(k*(k+1)*(2*k+1)/6)).
EXAMPLE
20 is in the sequence because 20 = 1 + 5 + 14 = 1^2 + 1^2 + 2^2 + 1^2 + 2^2 + 3^2.
MATHEMATICA
max = 200; f[x_] := Product[1 + x^(k (k + 1) (2 k + 1)/6), {k, 1, 10}]; Exponent[#, x] & /@ List @@ Normal[Series[f[x], {x, 0, max}]]
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jul 14 2017
STATUS
approved