A084474 Write n in binary and replace 0 with 0000.
1, 10000, 11, 100000000, 100001, 110000, 111, 1000000000000, 1000000001, 1000010000, 1000011, 1100000000, 1100001, 1110000, 1111, 10000000000000000, 10000000000001, 10000000010000, 10000000011, 10000100000000
Offset: 1
Keywords
Programs
-
Mathematica
Table[FromDigits[Flatten[IntegerDigits[n,2]/.{0->{0,0,0,0}}]],{n,20}] (* Harvey P. Dale, Feb 19 2013 *)
Comments