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”).
%I #11 May 10 2024 01:37:35
%S 30,33,36,38,39,41,44,45,46,47,48,49,50,51,52,53,54,55,56,57,59,60,61,
%T 62,63,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,
%U 86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103
%N Numbers that are the sum of six squares in three or more ways.
%H Sean A. Irvine, <a href="/A344807/b344807.txt">Table of n, a(n) for n = 1..1000</a>
%e 33 = 1^2 + 1^2 + 1^2 + 1^2 + 2^2 + 5^2
%e = 1^2 + 1^2 + 2^2 + 3^2 + 3^2 + 3^2
%e = 1^2 + 2^2 + 2^2 + 2^2 + 2^2 + 4^2
%e so 33 is a term.
%o (Python)
%o from itertools import combinations_with_replacement as cwr
%o from collections import defaultdict
%o keep = defaultdict(lambda: 0)
%o power_terms = [x**2 for x in range(1, 1000)]
%o for pos in cwr(power_terms, 6):
%o tot = sum(pos)
%o keep[tot] += 1
%o rets = sorted([k for k, v in keep.items() if v >= 3])
%o for x in range(len(rets)):
%o print(rets[x])
%Y Cf. A344796, A344806, A344808, A345480, A345512.
%K nonn
%O 1,1
%A _David Consiglio, Jr._, Jun 20 2021