login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A345835
Numbers that are the sum of eight fourth powers in exactly three ways.
8
518, 2678, 2693, 2708, 2738, 2758, 2773, 2838, 2853, 2868, 2883, 2918, 2998, 3078, 3108, 3123, 3253, 3302, 3317, 3363, 3382, 3428, 3477, 3492, 3542, 3622, 3732, 3778, 3797, 3893, 3926, 3953, 3973, 3988, 4018, 4053, 4101, 4118, 4133, 4166, 4193, 4243, 4258
OFFSET
1,1
COMMENTS
Differs from A345578 at term 13 because 2933 = 1^4 + 1^4 + 1^4 + 1^4 + 2^4 + 4^4 + 4^4 + 7^4 = 1^4 + 1^4 + 1^4 + 1^4 + 3^4 + 4^4 + 6^4 + 6^4 = 1^4 + 2^4 + 2^4 + 3^4 + 3^4 + 3^4 + 4^4 + 7^4 = 1^4 + 2^4 + 3^4 + 3^4 + 3^4 + 3^4 + 6^4 + 6^4.
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])
KEYWORD
nonn
AUTHOR
STATUS
approved