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.
%I A056977 #19 Feb 16 2025 08:32:43 %S A056977 0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0, %T A056977 1,0,0,1,1,0,0,0,1,1,1,1,1,0,0,0,1,0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,1,0, %U A056977 0,1,1,0,0,0,1,1,1,1,1,0,0,0,1,0,0,1,1,1,1,1,2,1,1,1,1,0,0,0,1,0,0,1 %N A056977 Number of blocks of {0, 1, 1} in binary expansion of n. %H A056977 Gheorghe Coserea, <a href="/A056977/b056977.txt">Table of n, a(n) for n = 1..10000</a> %H A056977 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/DigitBlock.html">Digit Block</a> %F A056977 a(2n) = a(n), a(2n+1) = a(n) + [n>1 and n congruent to 1 mod 4]. - _Ralf Stephan_, Aug 22 2003 %t A056977 a[n_, bits_] := (idn = IntegerDigits[n, 2]; ln = Length[idn]; lb = Length[bits]; For[cnt = 0; k = 1, k <= ln - lb + 1, k++, If[idn[[k ;; k + lb - 1]] == bits, cnt++]]; cnt); Table[ a[n, {0, 1, 1}], {n, 1, 102} ] (* _Jean-François Alcover_, Oct 23 2012 *) %t A056977 Table[SequenceCount[IntegerDigits[n,2],{0,1,1}],{n,120}] (* Requires Mathematica version 10 or later *) (* _Harvey P. Dale_, May 03 2019 *) %o A056977 (PARI) %o A056977 a(n) = { %o A056977 if (n < 11, return(0)); %o A056977 my(k = logint(n,2) - 1); %o A056977 hammingweight(bitnegimply(bitand(n>>1, n), n>>2)) - bittest(n,k) %o A056977 }; %o A056977 vector(102, i, a(i)) \\ _Gheorghe Coserea_, Sep 17 2015 %Y A056977 Cf. A014082, A056974, A056975, A056976, A056977, A056978, A056979, A056980. %K A056977 nonn,easy %O A056977 1,91 %A A056977 _Eric W. Weisstein_