OFFSET
1,2
LINKS
John Cerkan, Table of n, a(n) for n = 1..23
Greg Dresden and Jacob Siehler, Look, There's More to Say about Conway's Look and Say sequence, arXiv:2405.11103 [math.CO], 2024.
EXAMPLE
To get the 6th term, for example, note that the 5th term has three (10 in ternary!) 1's, two (2) 2's and one (1) 1, giving 10 1 2 2 1 1.
MATHEMATICA
a[1] := 1; a[n_] := a[n] = FromDigits[Flatten[{IntegerDigits[Length[#], 3], First[#]}& /@ Split[IntegerDigits[a[n-1]]]]]; Map[a, Range[25]] (* Peter J. C. Moses, Mar 24 2013 *)
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
STATUS
approved