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!)
A342685 Numbers that are the sum of five fifth powers in two or more ways. 7
4097, 51446, 51477, 51688, 52469, 54570, 59221, 68252, 68905, 84213, 110494, 131104, 151445, 212496, 300277, 325174, 325713, 355114, 422135, 422738, 589269, 637418, 794434, 810820, 876734, 876765, 876976, 877757, 879858, 884509, 893540, 909501, 924912, 935782, 976733, 995571, 1037784, 1083457 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
David Consiglio, Jr., Table of n, a(n) for n = 1..20000
EXAMPLE
51477 = 2^5 + 4^5 + 7^5 + 7^5 + 7^5
= 2^5 + 5^5 + 6^5 + 6^5 + 8^5
so 51477 is a term.
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, 500)]
for pos in cwr(power_terms, 5):
tot = sum(pos)
keep[tot] += 1
rets = sorted([k for k, v in keep.items() if v >= 2])
for x in range(len(rets)):
print(rets[x])
CROSSREFS
Sequence in context: A351311 A044887 A217196 * A342686 A321809 A017687
KEYWORD
nonn,changed
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 May 11 10:11 EDT 2024. Contains 372409 sequences. (Running on oeis4.)