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”).

A344750
Numbers that are the sum of three fourth powers in nine or more ways.
6
49511121842, 105760443698, 131801075042, 187758243218, 253590205778, 281539574498, 319889609522, 364765611938, 401069383442, 445600096578, 510334859762, 541692688082, 601395185762, 615665999858, 703409488418, 730871934338, 749472385298, 792177949472
OFFSET
1,1
LINKS
David Consiglio, Jr., Table of n, a(n) for n = 1..41
EXAMPLE
105760443698 is a term because 105760443698 = 7^4 + 476^4 + 483^4 = 51^4 + 452^4 + 503^4 = 76^4 + 437^4 + 513^4 = 107^4 + 417^4 + 524^4 = 133^4 + 399^4 + 532^4 = 199^4 + 348^4 + 547^4 = 212^4 + 337^4 + 549^4 = 228^4 + 323^4 + 551^4 = 252^4 + 301^4 + 553^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, 3):
tot = sum(pos)
keep[tot] += 1
rets = sorted([k for k, v in keep.items() if v >= 9])
for x in range(len(rets)):
print(rets[x])
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved