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!)
A345719 Numbers that are the sum of six fifth powers in five or more ways. 7
54827300, 74115800, 74883600, 75609125, 113088250, 120274275, 166078869, 169692136, 174781858, 178736448, 182341225, 185558208, 194939538, 203054589, 218814275, 235067008, 250989825, 251772882, 252721458, 255453233, 258124975, 274616694, 282859667 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
74115800 is a term because 74115800 = 1^5 + 4^5 + 21^5 + 21^5 + 29^5 + 34^5 = 1^5 + 8^5 + 14^5 + 23^5 + 32^5 + 32^5 = 4^5 + 11^5 + 13^5 + 22^5 + 24^5 + 36^5 = 5^5 + 6^5 + 19^5 + 20^5 + 24^5 + 36^5 = 6^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, 6):
tot = sum(pos)
keep[tot] += 1
rets = sorted([k for k, v in keep.items() if v >= 5])
for x in range(len(rets)):
print(rets[x])
CROSSREFS
Sequence in context: A205180 A216007 A186794 * A346360 A234794 A067388
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 April 25 06:49 EDT 2024. Contains 371964 sequences. (Running on oeis4.)