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!)
A323907 Lexicographically earliest positive sequence such that a(i) = a(j) => A004718(i) = A004718(j), for all i, j >= 0. 4

%I #12 Feb 10 2019 23:07:01

%S 1,2,3,4,2,1,5,6,3,4,1,2,4,3,7,8,2,1,5,6,1,2,3,4,5,6,2,1,6,5,9,10,3,4,

%T 1,2,4,3,7,8,1,2,3,4,2,1,5,6,4,3,7,8,3,4,1,2,7,8,4,3,8,7,11,12,2,1,5,

%U 6,1,2,3,4,5,6,2,1,6,5,9,10,1,2,3,4,2,1,5,6,3,4,1,2,4,3,7,8,5,6,2,1,6,5,9,10,2,1

%N Lexicographically earliest positive sequence such that a(i) = a(j) => A004718(i) = A004718(j), for all i, j >= 0.

%C Restricted growth sequence transform of A004718, Per Nørgård's "infinity sequence".

%C The composer Per Nørgård's name is also written in the OEIS as Per Noergaard.

%H Antti Karttunen, <a href="/A323907/b323907.txt">Table of n, a(n) for n = 0..65535</a>

%o (PARI)

%o up_to = 65535;

%o 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; };

%o A004718list(up_to) = { my(v=vector(up_to)); v[1]=1; v[2]=-1; for(n=3, up_to, v[n] = if(n%2, 1+v[n>>1], -v[n/2])); (v); }; \\ After code in A004718.

%o v004718 = A004718list(up_to);

%o A004718(n) = if(!n,n,v004718[n]);

%o v323907 = rgs_transform(vector(1+up_to,n,A004718(n-1)));

%o A323907(n) = v323907[1+n];

%Y Restricted growth sequence transform of A004718, A323908 and A323909.

%Y Cf. A083866 (positions of ones).

%K nonn

%O 0,2

%A _Antti Karttunen_, Feb 09 2019

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 April 23 06:04 EDT 2024. Contains 371906 sequences. (Running on oeis4.)