login

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”).

A366805
Lexicographically earliest infinite sequence such that a(i) = a(j) => A366803(i) = A366803(j) for all i, j >= 0.
4
1, 2, 2, 2, 2, 3, 2, 4, 2, 5, 6, 3, 2, 4, 4, 4, 2, 7, 8, 5, 9, 10, 5, 5, 2, 4, 3, 4, 4, 11, 4, 3, 2, 12, 13, 7, 10, 14, 7, 15, 16, 17, 18, 10, 7, 15, 9, 5, 2, 4, 3, 4, 5, 5, 4, 3, 4, 6, 8, 11, 4, 3, 3, 3, 2, 19, 10, 12, 16, 20, 12, 19, 21, 22, 23, 14, 12, 19, 10, 15, 24, 25, 26, 17, 27, 26, 17, 24, 12, 19, 14, 15
OFFSET
0,2
COMMENTS
Restricted growth sequence transform of A366803.
The scatter plot has quite interesting structure.
LINKS
PROG
(PARI)
\\ Needs also program from A366803:
up_to = 65537;
rgs_transform(invec) = { my(om = Map(), outvec = vector(length(invec)), u=1); for(i=1, length(invec), if(mapisdefined(om, invec[i]), my(pp = mapget(om, invec[i])); outvec[i] = outvec[pp] , mapput(om, invec[i], i); outvec[i] = u; u++ )); outvec; };
v366805 = rgs_transform(vector(1+up_to, n, A366803(n-1)));
A366805(n) = v366805[1+n];
CROSSREFS
KEYWORD
nonn,look
AUTHOR
Antti Karttunen, Oct 26 2023
STATUS
approved