Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
A209234
A two-digit Look-and-Say sequence starting with 10: each term summarizes the increasing two-digit substrings of the previous term.
6
10, 110, 110111, 101110311, 101103210311131, 101203310311113121231132, 101203210411312213120121123431132133, 201103104210311512413220421122123331232133134141143, 101203204310411412313214115220421222223124431232333134341242143151
OFFSET
0,1
LINKS
Eric Weisstein's World of Mathematics, Look and Say Sequence
EXAMPLE
a(0) = 10: 1x10 --> a(1)=110;
a(1) = 110: 1x10 and 1x11 --> a(2)=110111;
a(2) = 110111: 1x01, 1x10 and 3x11 -> a(3)=101110311;
a(3) = 101110311: 1x01, 1x03, 2x10, 3x11 and 1x31 -> a(4)=101103210311131.
PROG
(Haskell) -- See Link.
CROSSREFS
Cf. A209233 (start=11), A221368 (start=12), A221369 (start=13), A221372 (start=19), A221373 (start=99).
Sequence in context: A092500 A092501 A266926 * A282070 A282491 A281671
KEYWORD
nonn,base,look
AUTHOR
Reinhard Zumkeller, Jan 13 2013
STATUS
approved