OFFSET
1,3
COMMENTS
Term is present if and only if it is either a multiple of 9, or it is not a multiple of 3 but its 2-adic valuation is (a multiple of 3).
A multiplicative semigroup: if m and n are in the sequence, then so is m*n.
The asymptotic density of this sequence is 31/63. - Amiram Eldar, Jun 28 2024
LINKS
MATHEMATICA
Select[Range[0, 150], Divisible[#, 9] || (!Divisible[#, 3] && Divisible[IntegerExponent[#, 2], 3]) &] (* Amiram Eldar, Jun 28 2024 *)
PROG
(PARI) isA373992 = A373991;
CROSSREFS
Cf. A374042 (subsequence).
KEYWORD
nonn,easy
AUTHOR
Antti Karttunen, Jun 26 2024
STATUS
approved