OFFSET
1,1
LINKS
David A. Corneth, Table of n, a(n) for n = 1..10000 (first 1000 terms from T. D. Noe)
EXAMPLE
From David A. Corneth, Aug 03 2020: (Start)
122490 is in the sequence as 122490 = 3^5 + 4^5 + 5^5 + 9^5 + 9^5.
251124 is in the sequence as 251124 = 1^5 + 3^5 + 4^5 + 4^5 + 12^5.
349858 is in the sequence as 349858 = 1^5 + 1^5 + 4^5 + 10^5 + 12^5. (End)
MATHEMATICA
f[upto_]:=Module[{max=Floor[Power[upto, (5)^-1]], tp}, tp=Union[ Total/@ (Tuples[ Range[max], {5}]^5)]; Select[tp, #<=upto&]]; f[2100] (* Harvey P. Dale, Mar 22 2011 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
STATUS
approved