A346285 Numbers that are the sum of seven fifth powers in exactly eight ways.
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
Keywords
Examples
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.
Links
- Sean A. Irvine, Table of n, a(n) for n = 1..10000
Programs
-
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, 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])
Comments