login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A346356
Numbers that are the sum of six fifth powers in exactly one way.
6
6, 37, 68, 99, 130, 161, 192, 248, 279, 310, 341, 372, 403, 490, 521, 552, 583, 614, 732, 763, 794, 825, 974, 1005, 1029, 1036, 1060, 1091, 1122, 1153, 1184, 1216, 1247, 1271, 1302, 1333, 1364, 1395, 1458, 1513, 1544, 1575, 1606, 1755, 1786, 1817, 1997, 2028
OFFSET
1,1
COMMENTS
Differs from A003351 at term 93 because 4098 = 1^5 + 3^5 + 3^5 + 3^5 + 3^5 + 5^5 = 1^5 + 1^5 + 4^5 + 4^5 + 4^5 + 4^5.
LINKS
EXAMPLE
6 is a term because 6 = 1^5 + 1^5 + 1^5 + 1^5 + 1^5 + 1^5.
PROG
(Python)
from itertools import combinations_with_replacement as cwr
from collections import defaultdict
keep = defaultdict(lambda: 0)
power_terms = [x**5 for x in range(1, 1000)]
for pos in cwr(power_terms, 6):
tot = sum(pos)
keep[tot] += 1
rets = sorted([k for k, v in keep.items() if v == 1])
for x in range(len(rets)):
print(rets[x])
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved