A345831
Numbers that are the sum of seven fourth powers in exactly nine ways.
Original entry on oeis.org
19491, 21267, 21332, 23652, 35427, 36052, 37812, 38067, 39891, 40356, 41732, 41747, 43267, 43876, 43891, 43956, 44131, 44196, 44532, 44612, 45156, 45171, 45411, 45651, 45652, 45891, 46276, 46451, 46516, 47427, 48036, 48052, 48532, 48707, 49747, 49956, 49987
Offset: 1
21267 is a term because 21267 = 1^4 + 1^4 + 1^4 + 2^4 + 4^4 + 4^4 + 12^4 = 1^4 + 2^4 + 2^4 + 2^4 + 2^4 + 9^4 + 11^4 = 1^4 + 2^4 + 7^4 + 8^4 + 8^4 + 8^4 + 9^4 = 2^4 + 2^4 + 2^4 + 3^4 + 7^4 + 8^4 + 11^4 = 2^4 + 2^4 + 3^4 + 3^4 + 3^4 + 4^4 + 12^4 = 2^4 + 2^4 + 4^4 + 6^4 + 9^4 + 9^4 + 9^4 = 2^4 + 4^4 + 4^4 + 6^4 + 7^4 + 7^4 + 11^4 = 3^4 + 4^4 + 6^4 + 6^4 + 6^4 + 7^4 + 11^4 = 3^4 + 7^4 + 7^4 + 8^4 + 8^4 + 8^4 + 8^4.
-
from itertools import combinations_with_replacement as cwr
from collections import defaultdict
keep = defaultdict(lambda: 0)
power_terms = [x**4 for x in range(1, 1000)]
for pos in cwr(power_terms, 7):
tot = sum(pos)
keep[tot] += 1
rets = sorted([k for k, v in keep.items() if v == 9])
for x in range(len(rets)):
print(rets[x])
A345631
Numbers that are the sum of seven fifth powers in nine or more ways.
Original entry on oeis.org
110276376, 124732805, 127808693, 130298618, 134581976, 188116743, 189642309, 202274051, 202686274, 203343582, 219063107, 230909843, 233137574, 233549568, 234250752, 235438301, 244250335, 251138524, 252277376, 253480833, 254017026, 254380543
Offset: 1
124732805 is a term because 124732805 = 3^5 + 18^5 + 22^5 + 22^5 + 24^5 + 27^5 + 39^5 = 4^5 + 15^5 + 17^5 + 21^5 + 29^5 + 34^5 + 35^5 = 5^5 + 14^5 + 17^5 + 24^5 + 25^5 + 35^5 + 35^5 = 7^5 + 8^5 + 17^5 + 26^5 + 29^5 + 34^5 + 34^5 = 7^5 + 10^5 + 12^5 + 31^5 + 31^5 + 32^5 + 32^5 = 7^5 + 12^5 + 23^5 + 24^5 + 24^5 + 26^5 + 39^5 = 7^5 + 14^5 + 22^5 + 22^5 + 23^5 + 28^5 + 39^5 = 16^5 + 25^5 + 25^5 + 28^5 + 28^5 + 28^5 + 35^5 = 20^5 + 24^5 + 24^5 + 25^5 + 25^5 + 32^5 + 35^5.
-
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, 7):
tot = sum(pos)
keep[tot] += 1
rets = sorted([k for k, v in keep.items() if v >= 9])
for x in range(len(rets)):
print(rets[x])
A346285
Numbers that are the sum of seven fifth powers in exactly eight ways.
Original entry on oeis.org
36620574, 80552143, 81401376, 82078424, 92347417, 93653176, 94486699, 94626949, 98873875, 105674625, 121050874, 125959393, 129228307, 144209018, 145340799, 147245218, 147898763, 151727082, 151923168, 152361276, 152664876, 153877208, 155107349, 155270357
Offset: 1
36620574 is a term because 36620574 = 4^5 + 9^5 + 14^5 + 17^5 + 18^5 + 21^5 + 31^5 = 1^5 + 12^5 + 13^5 + 14^5 + 20^5 + 24^5 + 30^5 = 8^5 + 9^5 + 12^5 + 13^5 + 16^5 + 27^5 + 29^5 = 5^5 + 7^5 + 7^5 + 20^5 + 23^5 + 23^5 + 29^5 = 17^5 + 18^5 + 20^5 + 20^5 + 20^5 + 20^5 + 29^5 = 2^5 + 7^5 + 14^5 + 14^5 + 23^5 + 26^5 + 28^5 = 4^5 + 8^5 + 8^5 + 17^5 + 23^5 + 27^5 + 27^5 = 2^5 + 3^5 + 14^5 + 18^5 + 24^5 + 26^5 + 27^5.
-
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, 7):
tot = sum(pos)
keep[tot] += 1
rets = sorted([k for k, v in keep.items() if v == 8])
for x in range(len(rets)):
print(rets[x])
A346334
Numbers that are the sum of eight fifth powers in exactly nine ways.
Original entry on oeis.org
8742208, 18913169, 19987308, 20135313, 21505583, 21512966, 21563089, 21727552, 22237510, 22256608, 22438990, 22545600, 22686818, 23106589, 23122550, 23189782, 23221517, 23287858, 23346048, 23477344, 23798742, 23847285, 23931325, 24138358, 24385108, 24394139
Offset: 1
8742208 is a term because 8742208 = 1^5 + 1^5 + 2^5 + 3^5 + 5^5 + 7^5 + 15^5 + 24^5 = 4^5 + 4^5 + 8^5 + 8^5 + 9^5 + 15^5 + 17^5 + 23^5 = 1^5 + 3^5 + 7^5 + 12^5 + 12^5 + 13^5 + 17^5 + 23^5 = 2^5 + 5^5 + 6^5 + 7^5 + 15^5 + 15^5 + 15^5 + 23^5 = 1^5 + 1^5 + 9^5 + 9^5 + 11^5 + 17^5 + 18^5 + 22^5 = 3^5 + 3^5 + 7^5 + 9^5 + 12^5 + 12^5 + 21^5 + 21^5 = 4^5 + 4^5 + 4^5 + 11^5 + 11^5 + 12^5 + 21^5 + 21^5 = 10^5 + 12^5 + 12^5 + 13^5 + 16^5 + 16^5 + 19^5 + 20^5 = 8^5 + 13^5 + 14^5 + 14^5 + 14^5 + 16^5 + 19^5 + 20^5.
-
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, 8):
tot = sum(pos)
keep[tot] += 1
rets = sorted([k for k, v in keep.items() if v == 9])
for x in range(len(rets)):
print(rets[x])
A346259
Numbers that are the sum of seven fifth powers in exactly ten ways.
Original entry on oeis.org
134581976, 189642309, 219063107, 235438301, 252277376, 275782407, 300919884, 308188849, 309631268, 315635200, 327287951, 335530174, 342030094, 358852218, 379913293, 384699424, 387538625, 391133568, 395423876, 405307926, 421322507, 423673757, 425588250
Offset: 1
134581976 is a term because 134581976 = 1^5 + 14^5 + 17^5 + 18^5 + 26^5 + 31^5 + 39^5 = 1^5 + 1^5 + 10^5 + 12^5 + 19^5 + 35^5 + 38^5 = 8^5 + 11^5 + 12^5 + 17^5 + 27^5 + 33^5 + 38^5 = 3^5 + 12^5 + 12^5 + 21^5 + 28^5 + 32^5 + 38^5 = 4^5 + 11^5 + 13^5 + 22^5 + 24^5 + 36^5 + 36^5 = 5^5 + 6^5 + 19^5 + 20^5 + 24^5 + 36^5 + 36^5 = 1^5 + 4^5 + 21^5 + 21^5 + 29^5 + 34^5 + 36^5 = 1^5 + 8^5 + 14^5 + 23^5 + 32^5 + 32^5 + 36^5 = 6^5 + 25^5 + 25^5 + 25^5 + 29^5 + 30^5 + 36^5 = 12^5 + 20^5 + 21^5 + 26^5 + 28^5 + 34^5 + 35^5.
-
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, 7):
tot = sum(pos)
keep[tot] += 1
rets = sorted([k for k, v in keep.items() if v == 10])
for x in range(len(rets)):
print(rets[x])
A346364
Numbers that are the sum of six fifth powers in exactly nine ways.
Original entry on oeis.org
9085584992, 16933805856, 37377003050, 39254220544, 41066625600, 41485873792, 42149876800, 43828403850, 44180505600, 45902654525, 48588434400, 52005184992, 53536896864, 54156285568, 56229189632, 57088402525, 59954496800, 63432407850, 66188522400, 66507304800
Offset: 1
9085584992 = 24^5 + 38^5 + 42^5 + 48^5 + 54^5 + 96^5
= 21^5 + 34^5 + 38^5 + 43^5 + 74^5 + 92^5
= 8^5 + 34^5 + 38^5 + 62^5 + 68^5 + 92^5
= 18^5 + 18^5 + 44^5 + 64^5 + 66^5 + 92^5
= 13^5 + 18^5 + 51^5 + 64^5 + 64^5 + 92^5
= 8^5 + 38^5 + 41^5 + 47^5 + 79^5 + 89^5
= 5^5 + 23^5 + 29^5 + 45^5 + 85^5 + 85^5
= 8^5 + 23^5 + 41^5 + 64^5 + 82^5 + 84^5
= 12^5 + 18^5 + 38^5 + 72^5 + 78^5 + 84^5,
so 9085584992 is a term.
-
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 == 9])
for x in range(len(rets)):
print(rets[x])
Showing 1-6 of 6 results.
Comments