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!)
A345604 Numbers that are the sum of six fifth powers in three or more ways. 7
696467, 893572, 1100264, 1109295, 1165727, 1711776, 2007401, 2025309, 2221767, 2801812, 3047519, 3310494, 3360608, 3550866, 3559556, 3576120, 3807122, 3907101, 4055922, 4093540, 4096114, 4104067, 4123363, 4135578, 4155107, 4195571, 4222339, 4326784, 4417112 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
893572 is a term because 893572 = 2^5 + 6^5 + 7^5 + 12^5 + 12^5 + 13^5 = 2^5 + 7^5 + 7^5 + 11^5 + 11^5 + 14^5 = 5^5 + 8^5 + 8^5 + 8^5 + 8^5 + 15^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 >= 3])
for x in range(len(rets)):
print(rets[x])
CROSSREFS
Sequence in context: A010084 A209735 A273970 * A346358 A206518 A114676
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 August 4 01:25 EDT 2024. Contains 374905 sequences. (Running on oeis4.)