OFFSET
1,2
COMMENTS
Previous terms are described one by one in succession. Next terms are 118, 256, 564 and 1262 digits long.
LINKS
Reinhard Zumkeller, Table of n, a(n) for n = 1..9
Eric Weisstein's World of Mathematics, Look and Say Sequence
Wikipedia, Look-and-say sequence
PROG
(Haskell)
a045981 n = a045981_list !! (n-1)
a045981_list = 1 : f 1 [] where
f x zs = y : f y zs' where
y = read (concatMap show zs')
zs' = zs ++ [a045918 x]
-- Reinhard Zumkeller, Feb 28 2014
CROSSREFS
KEYWORD
nonn,easy,base,nice
AUTHOR
EXTENSIONS
More terms from Patrick De Geest, Jun 15 1999
STATUS
approved