A181929 Numbers n such that n is the substring identical to the most significant bits of its base 2 representation.
0, 1, 10, 110, 10011, 110101, 10011000, 110100011, 10010101001, 101111000101, 110011001110, 10010001101010, 101101111110011, 110010000001101, 1111110010100011, 10001110000111111, 101100111001011100, 110000110110011001, 1111011010110001101
Offset: 1
Examples
The number 110 is represented in the binary system by the string "1101110". 110 is a three-digit number, so we consider the 3 most significant bits, which are "110", identical to the string of digits used to represent the number 110. Thus 110 is in the sequence.
Links
- Scott R. Shannon, Table of n, a(n) for n = 1..1000
Crossrefs
Programs
-
Mathematica
fQ[n_] := Module[{d = IntegerDigits[n], len}, len = Length[d]; d == Take[IntegerDigits[n, 2], len]]; Select[Range[0, 1000000], fQ] (* T. D. Noe, Apr 03 2012 *)
-
PARI
{for(vv=0,2000000,bvv=binary(vv); ll=length(bvv);texp=0;btod=0; forstep(i=ll,1,-1,btod=btod+bvv[i]*10^texp;texp++); bigb=binary(btod);swsq=1; for(j=1,ll,if(bvv[j]!=bigb[j],swsq=0)); if(swsq==1,print(btod)))}
-
PARI
lista(nn) = {for (n=0, nn, if (n==0, print1(n, ", "), my(b = binary(n), db = fromdigits(b), bb = binary(db)); if (vector(#b, k, bb[k]) == b, print1(db, ", "));););} \\ Michel Marcus, Feb 10 2021
Comments