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 A345582 #7 Jul 31 2021 17:51:44 %S A345582 8003,8243,9043,9218,9283,9523,10372,10803,10868,10948,11043,11412, %T A345582 11557,11587,12083,12692,12932,13188,13268,13333,13508,13972,14147, %U A345582 14212,14387,14788,14883,14933,14948,14963,15013,15028,15093,15173,15268,15317,15332,15397 %N A345582 Numbers that are the sum of eight fourth powers in seven or more ways. %H A345582 Sean A. Irvine, <a href="/A345582/b345582.txt">Table of n, a(n) for n = 1..10000</a> %e A345582 8243 is a term because 8243 = 1^4 + 1^4 + 1^4 + 2^4 + 2^4 + 2^4 + 8^4 + 8^4 = 1^4 + 1^4 + 1^4 + 4^4 + 6^4 + 6^4 + 6^4 + 8^4 = 1^4 + 2^4 + 2^4 + 2^4 + 3^4 + 4^4 + 6^4 + 9^4 = 2^4 + 2^4 + 3^4 + 3^4 + 4^4 + 6^4 + 7^4 + 8^4 = 2^4 + 3^4 + 3^4 + 3^4 + 6^4 + 6^4 + 6^4 + 8^4 = 2^4 + 4^4 + 4^4 + 4^4 + 4^4 + 7^4 + 7^4 + 7^4 = 3^4 + 4^4 + 4^4 + 4^4 + 6^4 + 6^4 + 7^4 + 7^4. %o A345582 (Python) %o A345582 from itertools import combinations_with_replacement as cwr %o A345582 from collections import defaultdict %o A345582 keep = defaultdict(lambda: 0) %o A345582 power_terms = [x**4 for x in range(1, 1000)] %o A345582 for pos in cwr(power_terms, 8): %o A345582 tot = sum(pos) %o A345582 keep[tot] += 1 %o A345582 rets = sorted([k for k, v in keep.items() if v >= 7]) %o A345582 for x in range(len(rets)): %o A345582 print(rets[x]) %Y A345582 Cf. A345537, A345573, A345581, A345583, A345591, A345615, A345839. %K A345582 nonn %O A345582 1,1 %A A345582 _David Consiglio, Jr._, Jun 20 2021