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!)
A181891 Numbers n such that n is the substring identical to the least significant bits of its base 2 representation. 2

%I #31 Jan 15 2018 15:34:27

%S 0,1,10,11,100,101,110,111,1000,1001,1100,1101,10000,10001,10100,

%T 10101,11000,11001,11100,11101,100000,100001,101100,101101,110000,

%U 110001,111100,111101,1000000,1000001,1010000,1010001,1100000,1100001,1110000,1110001

%N Numbers n such that n is the substring identical to the least significant bits of its base 2 representation.

%C Terms with odd index, that is, a(1), a(3), a(5), ... are all multiples of 10. Each even-index term is one more than its predecessor, so that a(2n) = a(2n-1) + 1. [_Douglas Latimer_, Apr 26 2013]

%H Douglas Latimer, <a href="/A181891/b181891.txt">Table of n, a(n) for n = 1..850</a>

%e The number 11 is represented in the binary system by the string "1011". 11 is a two-digit number, so we consider the 2 least significant bits, which are "11", identical to the string of digits used to represent the number 11. Thus 11 is in the sequence.

%t 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 *)

%o (PARI) {for(vv=0,200,bvv=binary(vv);

%o ll=length(bvv);texp=0;btod=0;

%o forstep(i=ll,1,-1,btod=btod+bvv[i]*10^texp;texp++);

%o bigb=binary(btod);lbb=length(bigb);swsq=1;

%o forstep(j=ll,1,-1,if(bvv[j]!=bigb[lbb],swsq=0);lbb--);

%o if(swsq==1,print(btod)))}

%Y This is a subsequence of A038102. Sequence A181929 has similar definition.

%K nonn,base,easy

%O 1,3

%A _Douglas Latimer_, Mar 30 2012

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 19 12:14 EDT 2024. Contains 371792 sequences. (Running on oeis4.)