cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A072600 Numbers which in base 2 have fewer 0's than 1's.

This page as a plain text file.
%I A072600 #41 Apr 18 2020 00:58:06
%S A072600 1,3,5,6,7,11,13,14,15,19,21,22,23,25,26,27,28,29,30,31,39,43,45,46,
%T A072600 47,51,53,54,55,57,58,59,60,61,62,63,71,75,77,78,79,83,85,86,87,89,90,
%U A072600 91,92,93,94,95,99,101,102,103,105,106,107,108,109,110,111,113,114,115
%N A072600 Numbers which in base 2 have fewer 0's than 1's.
%C A072600 A037861(a(n)) < 0.
%C A072600 b_k = {a(n) | for all n s.t. a(n) contains k binary digits equal to 1} is the list of all valid win/loss round sequences in a "best of 2k-1" two player game, where 1 is a win and 0 is a loss. For example 19 = 10011b represents a game where the winner won the first two rounds, lost the next two, and won the last one. |b_k| = A001700(k). - _Philippe Beaudoin_, May 14 2014
%H A072600 T. D. Noe, <a href="/A072600/b072600.txt">Table of n, a(n) for n = 1..4733</a> ( numbers < 2^13)
%H A072600 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 A072600 Thomas Finn Lidbetter, <a href="https://uwspace.uwaterloo.ca/bitstream/handle/10012/14254/Lidbetter_Thomas.pdf">Counting, Adding, and Regular Languages</a>, Master's Thesis, University of Waterloo, Ontario, Canada, 2018.
%H A072600 <a href="/index/Bi#binary">Index entries for sequences related to binary expansion of n</a>
%e A072600 11 is present because '1011' contains 1 '0' and 3 '1's: 1<3.
%t A072600 Select[Range[130],DigitCount[#,2,0]<DigitCount[#,2,1]&]  (* _Harvey P. Dale_, Jan 12 2011 *)
%o A072600 (Haskell)
%o A072600 a072600 n = a072600_list !! (n-1)
%o A072600 a072600_list = filter ((< 0) . a037861) [0..]
%o A072600 -- _Reinhard Zumkeller_, Mar 31 2015
%o A072600 (PARI) is(n)=2*hammingweight(n)>exponent(n)+1 \\ _Charles R Greathouse IV_, Apr 18 2020
%Y A072600 Cf. A007088, A000120, A023416, A072601, A031443, A072602, A072603, A037861
%K A072600 nonn,base,easy
%O A072600 1,2
%A A072600 _Reinhard Zumkeller_, Jun 23 2002