OFFSET
1,1
COMMENTS
As the order of addition doesn't matter we can assume terms are in nondecreasing order. - David A. Corneth, Aug 01 2020
The sequence contains all integers greater than 321 which is the last of only 92 positive integers not in this sequence. - M. F. Hasler, Aug 25 2020
LINKS
David A. Corneth, Table of n, a(n) for n = 1..10000 (first 1000 terms from T. D. Noe)
FORMULA
a(n) = n + 92 for all n > 229. - M. F. Hasler, Aug 25 2020
EXAMPLE
From David A. Corneth, Aug 01 2020: (Start)
1120 is in the sequence as 1120 = 2^3 + 3^3 + 4^3 + 4^3 + 4^3 + 4^3 + 4^3 + 4^3 + 4^3 + 5^3 + 8^3.
2339 is in the sequence as 2339 = 4^3 + 4^3 + 4^3 + 4^3 + 5^3 + 5^3 + 5^3 + 5^3 + 5^3 + 9^3 + 9^3.
3594 is in the sequence as 3594 = 4^3 + 5^3 + 6^3 + 6^3 + 6^3 + 6^3 + 7^3 + 7^3 + 7^3 + 8^3 + 10^3. (End)
PROG
(PARI) (A003334_upto(N, k=11, m=3)=[i|i<-[1..#N=sum(n=1, sqrtnint(N, m), 'x^n^m, O('x^N))^k], polcoef(N, i)])(150) \\ See also A003333 for alternate code. - M. F. Hasler, Aug 03 2020
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved