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!)
A345578 Numbers that are the sum of eight fourth powers in three or more ways. 8
518, 2678, 2693, 2708, 2738, 2758, 2773, 2838, 2853, 2868, 2883, 2918, 2933, 2948, 2998, 3013, 3078, 3108, 3123, 3173, 3188, 3253, 3302, 3317, 3363, 3382, 3428, 3477, 3492, 3542, 3557, 3622, 3732, 3778, 3797, 3893, 3926, 3953, 3973, 3988, 4018, 4053, 4101 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
2678 is a term because 2678 = 1^4 + 1^4 + 1^4 + 1^4 + 1^4 + 2^4 + 4^4 + 7^4 = 1^4 + 1^4 + 1^4 + 1^4 + 1^4 + 3^4 + 6^4 + 6^4 = 1^4 + 1^4 + 2^4 + 2^4 + 3^4 + 3^4 + 3^4 + 7^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, 8):
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: A235305 A253308 A043380 * A345835 A253656 A233922
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 March 28 18:04 EDT 2024. Contains 371254 sequences. (Running on oeis4.)