OFFSET
1,1
LINKS
Antti Karttunen, Table of n, a(n) for n = 1..10000
EXAMPLE
6 = 2^1 * 3^1 is present, as there are altogether two 1-bits in the exponents (1 and 1 also in binary), which is more than one.
64 = 2^6 is present, as the binary representation of 6 is "110", which contains more than one 1-bit. This is also the first term not present in A139118.
MATHEMATICA
Select[Range[120], Plus @@ DigitCount[Last /@ FactorInteger[#], 2, 1] > 1 &] (* Amiram Eldar, Nov 27 2020 *)
PROG
(Scheme, with Antti Karttunen's IntSeq-library)
(PARI) isok(n) = my(f = factor(n)[, 2]); sum(k=1, #f, hammingweight(f[k])) > 1; \\ Michel Marcus, Feb 10 2016
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved