Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).
%I #11 Sep 03 2023 00:03:35
%S 0,1,0,1,1,0,2,3,0,3,1,1,2,2,3,0,4,5,0,5,1,3,2,4,3,2,4,2,5,0,6,7,0,6,
%T 1,6,2,5,3,3,4,4,5,3,6,1,7,0,8,9,0,8,1,7,2,8,3,5,4,6,5,5,6,3,7,3,8,1,
%U 9,0,10,11,0,10,1,8,2,11,3,6,4,8,5,7,6,5,7,6,8,2,9,2,10,2,11,0,12
%N The "Look and Say" version of the Inventory sequence A342585.
%C This sequences uses the same rules as the Inventory sequence A342585 except here each term is described using the "Look and Say" method of A005150. See the Examples below. Start with a(0) = 0.
%H Scott R. Shannon, <a href="/A347794/a347794.gif">Image of the first 10 million terms</a>.
%e a(1) = 1 and a(2) = 0, as after a(0) there is "one 0".
%e a(3) = 1 and a(4) = 1, as after a(0)..a(2) there is "one 1".
%e a(5) = 0 and a(6) = 2, as after a(0)..a(4) there are "zero 2's". As a number with zero occurrences has appeared, the count resets back to counting zeros.
%e a(7) = 3 and a(8) = 0, as after a(0)..a(6) there are "three 0's".
%e a(9) = 3 and a(10) = 1 as after a(0)..a(8) there are "three 1's".
%e a(11) = 1 and a(12) = 2 as after a(0)..a(10) there is "one 2".
%e a(13) = 2 and a(14) = 3 as after a(0)..a(12) there are "two 3's".
%e a(15) = 0 and a(16) = 4 as after a(0)..a(14) there are "zero 4's". As a number with zero occurrences has appeared, the count resets back to counting zeros.
%Y Cf. A342585, A005150, A347317, A032531, A181391.
%K nonn,base
%O 0,7
%A _Scott R. Shannon_, Sep 13 2021