OFFSET
1,1
COMMENTS
422 and 471 are the two largest of only 114 positive integers not in this sequence. This can be proved by induction. - M. F. Hasler, Aug 13 2020
LINKS
David A. Corneth, Table of n, a(n) for n = 1..10000 (first 1000 terms from T. D. Noe)
FORMULA
a(n) = 114 + n for all n > 357. - M. F. Hasler, Aug 13 2020
EXAMPLE
From David A. Corneth, Aug 01 2020: (Start)
1352 is in the sequence as 1352 = 3^3 + 4^3 + 4^3 + 4^3 + 4^3 + 5^3 + 6^3 + 6^3 + 8^3.
2312 is in the sequence as 2312 = 5^3 + 5^3 + 6^3 + 6^3 + 6^3 + 6^3 + 7^3 + 7^3 + 8^3.
3383 is in the sequence as 3383 = 4^3 + 5^3 + 5^3 + 5^3 + 6^3 + 6^3 + 8^3 + 10^3 + 10^3. (End)
MATHEMATICA
With[{upto=150}, Select[Union[Total/@Tuples[Range[Floor[Surd[upto-8, 3]]]^3, 9]], #<=upto&]](* Harvey P. Dale, Jan 04 2015 *)
PROG
(PARI) (A003332_upto(N, k=9, m=3)=[i|i<-[1..#N=sum(n=1, sqrtnint(N, m), 'x^n^m, O('x^N))^k], polcoef(N, i)])(160) \\ See also A003333 for alternate code. - M. F. Hasler, Aug 02 2020
CROSSREFS
Cf. numbers that are the sum of x nonzero y-th powers:
KEYWORD
nonn,easy
AUTHOR
STATUS
approved