login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A345630 Numbers that are the sum of seven fifth powers in eight or more ways. 7
36620574, 80552143, 81401376, 82078424, 92347417, 93653176, 94486699, 94626949, 98873875, 105674625, 110276376, 121050874, 124732805, 125959393, 127808693, 129228307, 130298618, 134581976, 144209018, 145340799, 147245218, 147898763, 151727082 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
80552143 is a term because 80552143 = 1^5 + 4^5 + 21^5 + 21^5 + 23^5 + 29^5 + 34^5 = 1^5 + 8^5 + 14^5 + 23^5 + 23^5 + 32^5 + 32^5 = 1^5 + 8^5 + 16^5 + 19^5 + 27^5 + 28^5 + 34^5 = 3^5 + 12^5 + 13^5 + 14^5 + 28^5 + 31^5 + 32^5 = 3^5 + 14^5 + 17^5 + 18^5 + 18^5 + 27^5 + 36^5 = 4^5 + 11^5 + 13^5 + 22^5 + 23^5 + 24^5 + 36^5 = 5^5 + 6^5 + 19^5 + 20^5 + 23^5 + 24^5 + 36^5 = 6^5 + 23^5 + 25^5 + 25^5 + 25^5 + 29^5 + 30^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, 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])
CROSSREFS
Sequence in context: A081641 A251372 A204852 * A346285 A364704 A028965
KEYWORD
nonn
AUTHOR
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified September 3 09:23 EDT 2024. Contains 375656 sequences. (Running on oeis4.)