login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A072603 Numbers which in base 2 have more 0's than 1's. 9

%I #25 Feb 26 2023 16:39:06

%S 4,8,16,17,18,20,24,32,33,34,36,40,48,64,65,66,67,68,69,70,72,73,74,

%T 76,80,81,82,84,88,96,97,98,100,104,112,128,129,130,131,132,133,134,

%U 136,137,138,140,144,145,146,148,152,160,161,162,164,168,176,192,193

%N Numbers which in base 2 have more 0's than 1's.

%H T. D. Noe, <a href="/A072603/b072603.txt">Table of n, a(n) for n = 1..5202</a> (numbers up to 2^14)

%H Jason Bell, Thomas Finn Lidbetter, Jeffrey Shallit, <a href="https://arxiv.org/abs/1804.07996">Additive Number Theory via Approximation by Regular Languages</a>, arXiv:1804.07996 [cs.FL], 2018.

%H <a href="/index/Bi#binary">Index entries for sequences related to binary expansion of n</a>

%e 8 is present because '1000' contains 3 '0's and 1 '1': 3>1.

%t gtQ[n_] := Module[{a, b}, {a, b} = DigitCount[n, 2]; b > a]; Select[Range[2^8], gtQ] (* _T. D. Noe_, Apr 20 2013 *)

%t Select[Range[200],DigitCount[#,2,0]>DigitCount[#,2,1]&] (* _Harvey P. Dale_, Feb 26 2023 *)

%o (Haskell)

%o a072603 n = a072603_list !! (n-1)

%o a072603_list = filter ((> 0) . a037861) [1..]

%o -- _Reinhard Zumkeller_, Mar 31 2015

%o (PARI) is(n)=2*hammingweight(n)<exponent(n)+1 \\ _Charles R Greathouse IV_, Apr 18 2020

%Y Cf. A007088, A000120, A023416, A072600, A072601, A031443, A072602.

%Y Cf. A037861(a(n)) > 0.

%K nonn,base,easy

%O 1,1

%A _Reinhard Zumkeller_, Jun 23 2002

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 16 04:38 EDT 2024. Contains 371696 sequences. (Running on oeis4.)