Consider the following alternative of the Look and Say sequence (OEIS A005150):
$u_0=N>0$
$u_{n+1}$ is the number of 1s then the number of 2s then ... then the number of 9s in $u_n$.
Example : $u_0=5,u_1=15,u_2=1115,u_3=3115,u_4=211315,u_5=31121315,u_6=41122315,u_7=3122131415,u_8=41122315,u_9=3132132415,u_{10}=3122331415,u_{11}=3122331415=u_{10},\dots$.
Notice how the sequence starts repeating after $u_{10}$.
Using a little python program, I found the following (see the data below for extra information):
for $1\le u_0\le 45$, the sequence repeats itself with a step of one (repetition of one term)
for $46\le u_0\le 56$, the sequence repeats itself with a step of two or less (repetition of two terms alternatively maximum)
for $57\le u_0\le 5988$, the sequence repeats itself with a step of three or less (repetition of three terms alternatively maximum)
I didn't check for higher numbers.
For any $u_0\ge1$, does the sequence have a finite number of images ?
Data for $1\le u_0\le 45$ (format : $u_0$,final number, first step where it repeats):
(1, '21322314', 13)
(2, '21322314', 12)
(3, '21322314', 13)
(4, '21322314', 9)
(5, '3122331415', 11)
(6, '3122331416', 11)
(7, '3122331417', 11)
(8, '3122331418', 11)
(9, '3122331419', 11)
(10, '21322314', 13)
(11, '21322314', 12)
(12, '21322314', 11)
(13, '21322314', 12)
(14, '21322314', 8)
(15, '3122331415', 10
(16, '3122331416', 10
(17, '3122331417', 10
(18, '3122331418', 10
(19, '3122331419', 10
(20, '21322314', 12)
(21, '21322314', 11)
(22, '22', 1)
(23, '21322314', 10)
(24, '31123314', 7)
(25, '31123315', 7)
(26, '31123316', 7)
(27, '31123317', 7)
(28, '31123318', 7)
(29, '31123319', 7)
(30, '21322314', 13)
(31, '21322314', 12)
(32, '21322314', 10)
(33, '21322314', 11)
(34, '21322314', 7)
(35, '3122331415', 9)
(36, '3122331416', 9)
(37, '3122331417', 9)
(38, '3122331418', 9)
(39, '3122331419', 9)
(40, '21322314', 9)
(41, '21322314', 8)
(42, '31123314', 7)
(43, '21322314', 7)
(44, '31123314', 8)
(45, '3122331415', 9)