login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A288533 Parse A004736 into distinct phrases [1], [2], [1,3], [2,1], [4], [3], [2,1,5], [4,3], [2,1,6], ...; a(n) is the length of the n-th phrase. 1

%I #26 Dec 11 2023 08:40:03

%S 1,1,2,2,1,1,3,2,3,1,3,2,1,2,2,2,1,2,4,1,1,2,3,3,2,3,5,1,3,3,3,1,1,2,

%T 2,4,3,2,3,4,4,1,3,4,4,2,1,2,2,5,5,1,2,4,3,5,1,1,2,3,4,5,2,2,3,5,5,3,

%U 1,3,3,3,4,5,1,2,2,4,5,6,1,2,4,4,6,4,1,2,3,4,4,6,2,1,2,3,3,5,5,4,1,2,3,5,6,6,1,1,2,3,4,5,7,3,2,3,4,4,7,6,1,3,3,4,5,6,5,1,2,2

%N Parse A004736 into distinct phrases [1], [2], [1,3], [2,1], [4], [3], [2,1,5], [4,3], [2,1,6], ...; a(n) is the length of the n-th phrase.

%C The phrases are formed by the Ziv-Lempel encoding described in A106182. - _Neal Gersh Tolunsky_, Nov 30 2023

%H Neal Gersh Tolunsky, <a href="/A288533/b288533.txt">Table of n, a(n) for n = 1..10000</a>

%e Consider the infinite sequence [1,2,1,3,2,1,4,3,2,1,5,4,3,2,1,...], i.e., A004736. We can first take [1] since we've never used it before. Then [2]. For the third term, we've already used [1], so we must instead take [1,3].

%o (Python)

%o # you should use program from internal format

%o a = set()

%o i = 2

%o s = "1"

%o seq = ""

%o while i < 100:

%o j = i

%o while j > 0:

%o if s not in a:

%o seq = seq + "," + str(len(s)-len(s.replace(",",""))+1)

%o a.add(s)

%o s = str(j)

%o else:

%o s = s + "," + str(j)

%o j -= 1

%o i += 1

%o print(seq[1:])

%Y Cf. A109337, A106182, A187180, A187181, A187182, A187183, A187184, A187185, A187186, A187187, A187188, A187199, A187200.

%K nonn

%O 1,3

%A _Lewis Chen_, Jun 11 2017

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified August 25 10:00 EDT 2024. Contains 375437 sequences. (Running on oeis4.)