OFFSET
1,1
COMMENTS
Clarification: A binary number consists of "runs" completely of 1's alternating with runs completely of 0's. No two or more runs all of the same digit are adjacent.
For the terms of this sequence together with those positive integers that, when written in binary, each contain only one run of 1's, see A164707.
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
MATHEMATICA
r1slQ[n_]:=Module[{idn=Select[Split[IntegerDigits[n, 2]], MemberQ[ #, 1]&]}, Length[ idn]>1 && Length[Union[Length/@idn]]==1]; Select[ Range[ 250], r1slQ] (* Harvey P. Dale, Sep 29 2018 *)
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Leroy Quet, Aug 23 2009
EXTENSIONS
Extended by Ray Chandler, Mar 15 2010
STATUS
approved