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!)
A346283 Numbers that are the sum of seven fifth powers in exactly six ways. 7
13562501, 14583968, 21555313, 22057487, 22066065, 23089782, 23345024, 24217918, 24401574, 24855016, 24952718, 24993517, 25052501, 25385064, 29558618, 30653536, 31613713, 32559143, 33005785, 33533765, 33635825, 33828631, 34267551, 34268332, 35431351, 35736040 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Differs from A345609 at term 15 because 28608832 = 3^5 + 4^5 + 4^5 + 8^5 + 10^5 + 24^5 + 29^5 = 2^5 + 12^5 + 12^5 + 16^5 + 18^5 + 24^5 + 28^5 = 6^5 + 6^5 + 14^5 + 14^5 + 22^5 + 22^5 + 28^5 = 7^5 + 8^5 + 13^5 + 14^5 + 17^5 + 26^5 + 27^5 = 2^5 + 8^5 + 11^5 + 19^5 + 22^5 + 23^5 + 27^5 = 6^5 + 6^5 + 12^5 + 14^5 + 24^5 + 24^5 + 26^5 = 7^5 + 7^5 + 8^5 + 16^5 + 24^5 + 25^5 + 25^5.
LINKS
EXAMPLE
13562501 is a term because 13562501 = 1^5 + 1^5 + 1^5 + 9^5 + 14^5 + 20^5 + 25^5 = 1^5 + 15^5 + 15^5 + 15^5 + 15^5 + 15^5 + 25^5 = 6^5 + 7^5 + 11^5 + 16^5 + 18^5 + 19^5 + 24^5 = 7^5 + 7^5 + 11^5 + 13^5 + 19^5 + 21^5 + 23^5 = 2^5 + 6^5 + 14^5 + 18^5 + 18^5 + 21^5 + 22^5 = 1^5 + 5^5 + 15^5 + 20^5 + 20^5 + 20^5 + 20^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 == 6])
for x in range(len(rets)):
print(rets[x])
CROSSREFS
Sequence in context: A352329 A353025 A345609 * A205026 A126724 A251565
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 July 14 02:13 EDT 2024. Contains 374290 sequences. (Running on oeis4.)