OFFSET
1,1
COMMENTS
The previous number is converted to binary digits and then the digits are regarded as decimal digits in the next number in the sequence. - Michael Somos, May 16 2014
The next term has 100 digits. - Harvey P. Dale, Jul 16 2011
The number of decimal digits of a(n) is A242347(n). - Robert G. Wilson v, Jul 10 2013
Log(a(n)) / log(a(n-1)) = ~1/log_10(2) = A020862. - Robert G. Wilson v, Jul 10 2013
REFERENCES
Clifford Pickover, Mazes for the Mind, St. Martin's Press, NY, 1992, p. 350.
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..7
MAPLE
f:=proc(n) local i, j, r; i:=convert(n, base, 2); j:=add(i[r]*10^(r-1), r=1..nops(i)); end;
g:=proc(n, M) global f; local a, b, t1; a:=n; t1:=[a]; for i from 1 to M do b:=f(a); t1:=[op(t1), b]; a:=b; od; t1; end; g(2, 5); # N. J. A. Sloane, Jul 14 2015
MATHEMATICA
NestList[FromDigits[IntegerDigits[#, 2]]&, 2, 5] (* Harvey P. Dale, Jul 16 2011 *)
PROG
CROSSREFS
KEYWORD
nonn,base,nice
AUTHOR
EXTENSIONS
Comment corrected by Chai Wah Wu, Dec 26 2014
STATUS
approved