This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A345600 #6 Jul 31 2021 17:25:58 %S A345600 4485,5445,5460,5525,5540,5590,5605,5670,5700,5715,5765,5780,5830, %T A345600 5845,6645,6675,6710,6740,6755,6775,6805,6820,6855,6870,6885,6900, %U A345600 6915,6930,6935,6950,6965,6980,6995,7015,7030,7045,7060,7095,7110,7125,7175,7190,7235 %N A345600 Numbers that are the sum of ten fourth powers in seven or more ways. %H A345600 Sean A. Irvine, <a href="/A345600/b345600.txt">Table of n, a(n) for n = 1..10000</a> %e A345600 5445 is a term because 5445 = 1^4 + 1^4 + 1^4 + 1^4 + 1^4 + 2^4 + 2^4 + 2^4 + 6^4 + 8^4 = 1^4 + 1^4 + 1^4 + 1^4 + 1^4 + 4^4 + 6^4 + 6^4 + 6^4 + 6^4 = 1^4 + 1^4 + 2^4 + 2^4 + 2^4 + 3^4 + 4^4 + 4^4 + 7^4 + 7^4 = 1^4 + 1^4 + 2^4 + 2^4 + 3^4 + 3^4 + 4^4 + 6^4 + 6^4 + 7^4 = 1^4 + 1^4 + 2^4 + 3^4 + 3^4 + 3^4 + 6^4 + 6^4 + 6^4 + 6^4 = 1^4 + 3^4 + 3^4 + 3^4 + 3^4 + 4^4 + 4^4 + 4^4 + 4^4 + 8^4 = 4^4 + 4^4 + 4^4 + 4^4 + 5^4 + 5^4 + 5^4 + 5^4 + 5^4 + 6^4. %o A345600 (Python) %o A345600 from itertools import combinations_with_replacement as cwr %o A345600 from collections import defaultdict %o A345600 keep = defaultdict(lambda: 0) %o A345600 power_terms = [x**4 for x in range(1, 1000)] %o A345600 for pos in cwr(power_terms, 10): %o A345600 tot = sum(pos) %o A345600 keep[tot] += 1 %o A345600 rets = sorted([k for k, v in keep.items() if v >= 7]) %o A345600 for x in range(len(rets)): %o A345600 print(rets[x]) %Y A345600 Cf. A345555, A345591, A345599, A345601, A345639, A345859. %K A345600 nonn %O A345600 1,1 %A A345600 _David Consiglio, Jr._, Jun 20 2021