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!)
A366792 Lexicographically earliest infinite sequence such that a(i) = a(j) => A365425(i) = A365425(j) and A366787(i) = A366787(j) for all i, j >= 0. 4
1, 1, 1, 2, 1, 3, 2, 4, 1, 5, 3, 6, 2, 7, 4, 2, 1, 8, 5, 9, 3, 10, 6, 3, 2, 11, 7, 7, 4, 12, 2, 13, 1, 14, 8, 15, 5, 16, 9, 5, 3, 17, 10, 11, 6, 18, 3, 19, 2, 20, 11, 10, 7, 21, 7, 22, 4, 18, 12, 23, 2, 22, 13, 4, 1, 24, 14, 25, 8, 26, 15, 8, 5, 27, 16, 20, 9, 28, 5, 29, 3, 30, 17, 17, 10, 31, 11, 32, 6, 33, 18, 34, 3 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
Restricted growth sequence transform of the ordered pair [A365425(n), A366787(n)].
Restricted growth sequence transform of the function f(n) = A366790(A163511(n)).
For all i, j >= 0: a(i) = a(j) => A366788(i) = A366788(j).
LINKS
FORMULA
For all n >= 1, a(n) = a(2*n) = a(A000265(n)).
PROG
(PARI)
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; };
A000265(n) = (n>>valuation(n, 2));
A046523(n) = { my(f=vecsort(factor(n)[, 2], , 4), p); prod(i=1, #f, (p=nextprime(p+1))^f[i]); }; \\ From A046523
A163511(n) = if(!n, 1, my(p=2, t=1); while(n>1, if(!(n%2), (t*=p), p=nextprime(1+p)); n >>= 1); (t*p));
A366789(n) = { my(f=factor(n)); prod(k=1, #f~, A000265(primepi(f[k, 1]))^f[k, 2]); };
A366792aux(n) = [A365425(n), A366787(n)];
v366792 = rgs_transform(vector(1+up_to, n, A366792aux(n-1)));
A366792(n) = v366792[1+n];
CROSSREFS
Cf. also A365394, A365395.
Sequence in context: A340717 A336920 A365395 * A336933 A336460 A108712
KEYWORD
nonn,look
AUTHOR
Antti Karttunen, Oct 23 2023
STATUS
approved

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 9 02:18 EDT 2024. Contains 375024 sequences. (Running on oeis4.)