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 A374590 #10 Jul 14 2024 08:53:05 %S A374590 8,24,27,32,40,54,56,64,72,88,96,104,108,120,125,135,136,152,160,168, %T A374590 184,189,192,200,216,224,232,243,248,250,264,270,280,288,296,297,312, %U A374590 320,328,343,344,351,352,360,375,376,378,392,408,416,424,440,448,456,459 %N A374590 Numbers whose maximum exponent in their prime factorization is an evil number (A001969). %C A374590 The asymptotic density of this sequence is Sum_{k in A001969} (1/zeta(k+1) - 1/zeta(k)) = 0.12101890210392912747... . %H A374590 Amiram Eldar, <a href="/A374590/b374590.txt">Table of n, a(n) for n = 1..10000</a> %t A374590 evilQ[n_] := EvenQ[DigitCount[n, 2, 1]]; q[n_] := evilQ[Max[FactorInteger[n][[;; , 2]]]]; Select[Range[500], q] %o A374590 (PARI) is(n) = n > 1 && !(hammingweight(vecmax(factor(n)[, 2])) % 2); %Y A374590 Cf. A001969, A051903. %Y A374590 Subsequence of A013929 and A262675 \ {1}. %Y A374590 Similar sequences: A368714, A369937, A369938, A369939, A374588, A374589. %K A374590 nonn,easy,base %O A374590 1,1 %A A374590 _Amiram Eldar_, Jul 12 2024