login

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”).

A374590
Numbers whose maximum exponent in their prime factorization is an evil number (A001969).
5
8, 24, 27, 32, 40, 54, 56, 64, 72, 88, 96, 104, 108, 120, 125, 135, 136, 152, 160, 168, 184, 189, 192, 200, 216, 224, 232, 243, 248, 250, 264, 270, 280, 288, 296, 297, 312, 320, 328, 343, 344, 351, 352, 360, 375, 376, 378, 392, 408, 416, 424, 440, 448, 456, 459
OFFSET
1,1
COMMENTS
The asymptotic density of this sequence is Sum_{k in A001969} (1/zeta(k+1) - 1/zeta(k)) = 0.12101890210392912747... .
LINKS
MATHEMATICA
evilQ[n_] := EvenQ[DigitCount[n, 2, 1]]; q[n_] := evilQ[Max[FactorInteger[n][[;; , 2]]]]; Select[Range[500], q]
PROG
(PARI) is(n) = n > 1 && !(hammingweight(vecmax(factor(n)[, 2])) % 2);
CROSSREFS
Subsequence of A013929 and A262675 \ {1}.
Similar sequences: A368714, A369937, A369938, A369939, A374588, A374589.
Sequence in context: A029607 A244030 A375432 * A325990 A060476 A295661
KEYWORD
nonn,easy,base
AUTHOR
Amiram Eldar, Jul 12 2024
STATUS
approved