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

A344647
Numbers that are the sum of three fourth powers in six or more ways.
6
292965218, 779888018, 1010431058, 1110995522, 1500533762, 1665914642, 2158376402, 2373191618, 2636686962, 2689817858, 3019732898, 3205282178, 3642994082, 3831800882, 4324686002, 4687443488, 5064808658, 5175310322, 5745705602, 6317554418, 6450435362, 6720346178, 7018992162
OFFSET
1,1
LINKS
Sean A. Irvine, Table of n, a(n) for n = 1..10000 (terms 1..70 from David Consiglio, Jr.)
EXAMPLE
1010431058 is a term because 1010431058 = 13^4 + 143^4 + 156^4 = 31^4 + 132^4 + 163^4 = 44^4 + 123^4 + 167^4 = 52^4 + 117^4 + 169^4 = 69^4 + 103^4 + 172^4 = 81^4 + 92^4 + 173^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, 500)]
for pos in cwr(power_terms, 3):
tot = sum(pos)
keep[tot] += 1
rets = sorted([k for k, v in keep.items() if v >= 6])
for x in range(len(rets)):
print(rets[x])
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved