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!)
A365576 a(1)=2; thereafter a(n) is the number of strongly connected components in the digraph of the sequence thus far, where jumps from location i to i+-a(i) are permitted (within 1..n-1). 3

%I #33 Sep 20 2023 10:00:03

%S 2,1,2,2,3,2,2,3,3,4,5,4,5,6,7,8,8,9,10,11,12,13,14,15,13,14,15,16,17,

%T 18,19,20,21,22,23,24,25,26,27,27,28,29,27,28,29,30,31,32,33,34,35,36,

%U 37,38,39,40,41,42,43,44,45,46,47,48,49,50,50,51,52,53

%N a(1)=2; thereafter a(n) is the number of strongly connected components in the digraph of the sequence thus far, where jumps from location i to i+-a(i) are permitted (within 1..n-1).

%C If two locations j and k can reach other, then they belong to the same strongly connected component and can reach the same set of locations.

%C a(n) <= a(n-1) + 1.

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

%e a(5)=3 because there are 3 distinct sets of locations which represent the indices reachable from a given location s.

%e Starting at s=1, we can visit the set of locations i = {1, 3}

%e 1 2 3 4

%e 2, 1, 2, 2

%e 2---->2

%e This is the same set of locations that can be visited from s=3. Since it is the same set, we only count it once:

%e 1 2 3 4

%e 2, 1, 2, 2

%e 2<----2

%e From s=2, we can visit the set of locations i = {1, 2, 3}:

%e 1 2 3 4

%e 2, 1, 2, 2

%e 2<-1->2

%e From s=4, we can visit another distinct set of locations i = {1, 2, 3, 4}

%e 1 2 3 4

%e 2, 1, 2, 2

%e 1<----2

%e 2<-1->2

%e This gives a total of 3 distinct sets of locations reachable from any starting index (equivalent to 3 strongly connected components):

%e i = {1, 3}; i = {1, 2, 3}; and i = {1, 2, 3, 4}.

%Y Cf. A364882, A364392, A360744, A362248.

%K nonn

%O 1,1

%A _Neal Gersh Tolunsky_, Sep 09 2023

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 June 23 17:30 EDT 2024. Contains 373653 sequences. (Running on oeis4.)