OFFSET
1,2
COMMENTS
The interest of this is that if A_{n} is the n-th term of this sequence then A_{n} is a truncate of A_{n+3}. Thus the sequence gives rise to a triple A,B,C of infinite sequences of 1,2,3 such that B describes A, C describes B and A describes C.
LINKS
Michael De Vlieger, Table of n, a(n) for n = 1..22
FORMULA
Each term can be found by doing a look-and-say on the previous term and appending a 1. - James E Davis, Apr 28 2016
EXAMPLE
The term after 311 is one-three, two-one, one: i.e. 13211. - James E Davis, Apr 28 2016
MATHEMATICA
NestList[FromDigits@ Append[Flatten@ Map[{Length@ #, First@ #} &, Split@ IntegerDigits@ #], 1] &, 1, 10] (* Michael De Vlieger, Apr 28 2016 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Louis Hirsch Kauffman (kauffman(AT)uic.edu), Dec 18 2009
EXTENSIONS
More terms from James E Davis, Apr 28 2016
STATUS
approved