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 A332738 #7 Feb 22 2020 12:52:07 %S A332738 5642,9758,15402,51051,72105,73815,113883,134805,149226,202895,270655, %T A332738 352495,443555,552958,627095,650845,831369,831831,841269,870870, %U A332738 881705,956242,1000110,1088255,1135290,1255110,1255215,1418395,1447095,1455762,1610070,1718717,1746955 %N A332738 Composite squarefree numbers k = Product_{i} p_i such that k^2 is divisible by Sum_{i} p_i^2. %H A332738 Amiram Eldar, <a href="/A332738/b332738.txt">Table of n, a(n) for n = 1..1000</a> %e A332738 5642 = 2 * 7 * 13 * 31 is a term since 5642^2/(2^2 + 7^2 + 13^2 + 31^2) = 26908 is an integer. %t A332738 Select[Range[10^6], CompositeQ[#] && SquareFreeQ[#] && Divisible[#^2, Plus @@ (FactorInteger[#][[;;,1]]^2)] &] %Y A332738 Cf. A131647. %K A332738 nonn %O A332738 1,1 %A A332738 _Amiram Eldar_, Feb 21 2020