OFFSET
1,2
EXAMPLE
LookAndSay(112) = 2112 ( two 1's, one 2), a palindrome, so 22 belongs to the sequence.
MATHEMATICA
RunLengthEncode[x_List] := (Through[{First, Length}[ #1 ]] &) /@ Split[x]; Do[a = Flatten[ RunLengthEncode[ IntegerDigits[n]]]; If[a == Reverse[a], Print[n]], {n, 1, 10^6}]
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Joseph L. Pe, Jan 26 2003
EXTENSIONS
More terms from Robert G. Wilson v, Jan 27 2003
STATUS
approved