OFFSET
1,1
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Artūras Dubickas, On a sequence of rational numbers with unusual divisibility by a power of 2, Miskolc Math. Notes (2024) Vol. 25, No. 1, 203-208. Mentions this sequence.
EXAMPLE
13 in binary is 1101, which has three 1's but only one 0, hence 13 is in the sequence.
14 in binary is 1110, which has three 1's but only one 0, hence 14 is in the sequence.
15 in binary is 1111, which has four 1's but no significant 0's, hence 15 is not in the sequence.
MATHEMATICA
Select[Range[700], DigitCount[#, 2, 0] == DigitCount[#, 2, 1] - 2 &] (* Vincenzo Librandi, Aug 24 2013 *)
CROSSREFS
KEYWORD
nonn,easy,base
AUTHOR
EXTENSIONS
More terms from Vincenzo Librandi, Aug 24 2013
STATUS
approved