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!)
A345597 Numbers that are the sum of ten fourth powers in four or more ways. 7
1620, 2660, 2725, 2740, 2835, 2855, 2870, 2900, 2915, 2920, 2935, 2950, 2965, 2980, 3000, 3015, 3030, 3045, 3095, 3110, 3160, 3175, 3190, 3205, 3220, 3240, 3255, 3270, 3285, 3335, 3350, 3415, 3430, 3445, 3460, 3479, 3510, 3525, 3544, 3559, 3574, 3589, 3639 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
2660 is a term because 2660 = 1^4 + 1^4 + 1^4 + 1^4 + 2^4 + 2^4 + 2^4 + 2^4 + 6^4 + 6^4 = 1^4 + 1^4 + 1^4 + 3^4 + 4^4 + 4^4 + 4^4 + 4^4 + 4^4 + 6^4 = 1^4 + 2^4 + 2^4 + 2^4 + 2^4 + 2^4 + 2^4 + 3^4 + 3^4 + 7^4 = 2^4 + 3^4 + 3^4 + 3^4 + 3^4 + 4^4 + 4^4 + 4^4 + 4^4 + 6^4.
PROG
(Python)
from itertools import combinations_with_replacement as cwr
from collections import defaultdict
keep = defaultdict(lambda: 0)
power_terms = [x**4 for x in range(1, 1000)]
for pos in cwr(power_terms, 10):
tot = sum(pos)
keep[tot] += 1
rets = sorted([k for k, v in keep.items() if v >= 4])
for x in range(len(rets)):
print(rets[x])
CROSSREFS
Sequence in context: A231423 A252011 A277111 * A345856 A206537 A269278
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 13 21:35 EDT 2024. Contains 375144 sequences. (Running on oeis4.)