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!)
A345722 Numbers that are the sum of six fifth powers in eight or more ways. 6
2295937600, 4335900525, 6251954544, 8986552608, 9085584992, 13413708308, 14539246326, 15277569450, 15728636000, 16770321920, 16873011232, 16933805856, 17572402769, 17713454592, 17960776999, 18190647200, 19621666592, 20570070125, 20827689300 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
4335900525 is a term because 4335900525 = 2^5 + 24^5 + 34^5 + 56^5 + 61^5 + 78^5 = 3^5 + 21^5 + 37^5 + 54^5 + 62^5 + 78^5 = 3^5 + 21^5 + 39^5 + 49^5 + 66^5 + 77^5 = 3^5 + 26^5 + 32^5 + 49^5 + 72^5 + 73^5 = 8^5 + 16^5 + 42^5 + 49^5 + 61^5 + 79^5 = 9^5 + 13^5 + 43^5 + 47^5 + 66^5 + 77^5 = 19^5 + 20^5 + 30^5 + 45^5 + 61^5 + 80^5 = 21^5 + 24^5 + 28^5 + 37^5 + 67^5 + 78^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 >= 8])
for x in range(len(rets)):
print(rets[x])
CROSSREFS
Sequence in context: A327056 A180688 A225760 * A346363 A022240 A251490
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 20 05:55 EDT 2024. Contains 371799 sequences. (Running on oeis4.)