OFFSET
0,1
COMMENTS
a(22) is the first term containing a zero; this is due to the fact that a(21) is the first term having exactly 10 occurrences of a two-digit number, namely 10 x 42.
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 0..1000
Eric Weisstein's World of Mathematics, Look and Say Sequence
Wikipedia, Look-and-say sequence
Reinhard Zumkeller, Haskell program for two-digit Look-and-Say sequences
EXAMPLE
a(0) = 11: 1 x 13 --> a(1) = 113;
a(1) = 113: 1 x 11 and 1 x 13 --> a(2) = 111113;
a(2) = 111113: 4 x 11 and 1 x 13 --> a(3) = 411113;
a(3) = 411113: 3 x 11, 1 x 13 and 1 x 41 --> a(4) = 311113141.
PROG
(Haskell) -- See Link.
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Reinhard Zumkeller, Jan 13 2013
STATUS
approved