OFFSET
1,1
LINKS
Sean A. Irvine, Table of n, a(n) for n = 1..2061
EXAMPLE
592417938 is a term because 592417938 = 6^4 + 59^4 + 65^4 + 154^4 = 7^4 + 11^4 + 20^4 + 156^4 = 10^4 + 17^4 + 17^4 + 156^4 = 12^4 + 112^4 + 115^4 + 127^4 = 15^4 + 86^4 + 107^4 + 142^4 = 21^4 + 49^4 + 70^4 + 154^4 = 25^4 + 107^4 + 112^4 + 132^4 = 26^4 + 45^4 + 71^4 + 154^4 = 28^4 + 105^4 + 112^4 + 133^4 = 63^4 + 77^4 + 112^4 + 140^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, 4):
tot = sum(pos)
keep[tot] += 1
rets = sorted([k for k, v in keep.items() if v >= 10])
for x in range(len(rets)):
print(rets[x])
CROSSREFS
KEYWORD
nonn
AUTHOR
David Consiglio, Jr., Jun 02 2021
EXTENSIONS
More terms from Sean A. Irvine, Jun 03 2021
STATUS
approved