OFFSET
1,2
COMMENTS
a(n) is A001387(n) converted to base 10. - Nathan Fox, Mar 07 2018
"Describe" means to apply the "look-and-say" function (cf. A045918), but the "count" is again expressed in binary (and concatenated with the digit), cf. examples. - M. F. Hasler, Jul 12 2025
EXAMPLE
1 -> one 1 -> 11 -> 3;
3 -> 11 -> two 1s -> 101 -> 5;
5 -> 101 -> one 1, one 0, one 1 -> 111011 -> 59;
etc.
PROG
(PARI) A049190_first(N=13)=vector(N, i, N=if(i>1, my(d=binary(N), j=0); d=concat(d[^1]-d[^-1], -1); fromdigits(concat([concat(binary(-j+j=n), d[n]<0) | n<-[1..#d], d[n]]), 2), 1)) \\ M. F. Hasler, Jul 12 2025
CROSSREFS
KEYWORD
nonn,base
AUTHOR
EXTENSIONS
Definition and Example corrected by Nathan Fox, Mar 07 2018
STATUS
approved
