OFFSET
1,1
COMMENTS
374 is the largest of only 99 positive integers not in this sequence. - 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) = n + 99 for all n > 275. - M. F. Hasler, Aug 13 2020
EXAMPLE
From David A. Corneth, Aug 01 2020: (Start)
1646 is in the sequence as 1646 = 4^3 + 4^3 + 4^3 + 4^3 + 4^3 + 4^3 + 4^3 + 7^3 + 7^3 + 8^3.
2790 is in the sequence as 2790 = 4^3 + 4^3 + 5^3 + 5^3 + 5^3 + 6^3 + 6^3 + 7^3 + 8^3 + 10^3.
3450 is in the sequence as 3450 = 5^3 + 5^3 + 5^3 + 5^3 + 5^3 + 7^3 + 8^3 + 8^3 + 9^3 + 9^3. (End)
PROG
(PARI) (A003333_upto(N)=select( {is_A003333(n, k=10, m=3, L=sqrtnint(abs(n-k+1), m))=if( n>k*L^m || n<k, 0, n<k*L^m, forstep(r=min(k-1, n\L^m), 0, -1, self()(n-r*L^m, k-r, m, L-1) && return(1)), 1)}, [1..N]))(200) \\ M. F. Hasler, Aug 02 2020
A3333=A003333_upto(320); A003333(n)=if(n>275, n+99, n>222, n+98, A3333[n]) \\ M. F. Hasler, Aug 13 2020
CROSSREFS
Other sequences of numbers that are the sum of x nonzero y-th powers:
KEYWORD
nonn,easy
AUTHOR
STATUS
approved