OFFSET
0,4
COMMENTS
Deleting the even occurrences of 0 and the odd occurrences of 1, we get the same sequence apart from the initial three terms 0,1,1 replaced by 0.
EXAMPLE
Numbers in base 2 (A007088):
0, 1, 10, 11, 100, 101, 110, 111, 1000.....
Delete 2nd, 4th, 6th,.. (even) occurrence of 0 (replaced by ~):
0, 1, 1~, 11, 10~, 101, 11~, 111, 10~0
Delete 2nd, 4th 6th,... (even) occurrence of 1 (replaced by ~):
0, 1, ~~, 1~, 10~, ~01, ~1~, ~1~, 10~0
The numbers left are:
0, 1, 1, 10, 1, 1, 1, 100, and in base 10: 0, 1, 1, 2, 1, 1, 1, 4, ....as shown by a(n).
CROSSREFS
KEYWORD
easy,nonn,base,less
AUTHOR
Paolo P. Lava and Giorgio Balzarotti, Mar 15 2010
STATUS
approved