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!)
A323241 Lexicographically earliest sequence such that a(i) = a(j) => f(i) = f(j) for all i, j, where f(n<=2) = -n, f(n) = 0 if n is an odd number > 1, and f(n) = A300226(n) for even numbers >= 4. 5
1, 2, 3, 4, 3, 5, 3, 6, 3, 5, 3, 7, 3, 5, 3, 8, 3, 9, 3, 7, 3, 5, 3, 10, 3, 5, 3, 7, 3, 11, 3, 12, 3, 5, 3, 13, 3, 5, 3, 10, 3, 11, 3, 7, 3, 5, 3, 14, 3, 15, 3, 7, 3, 16, 3, 10, 3, 5, 3, 17, 3, 5, 3, 18, 3, 11, 3, 7, 3, 19, 3, 20, 3, 5, 3, 7, 3, 11, 3, 14, 3, 5, 3, 17, 3, 5, 3, 10, 3, 21, 3, 7, 3, 5, 3, 22, 3, 23, 3, 24, 3, 11, 3, 10, 3 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
For all i, j:
A319701(i) = A319701(j) => a(i) = a(j),
a(i) = a(j) => A007814(i) = A007814(j).
a(i) = a(j) => A183063(i) = A183063(j).
LINKS
PROG
(PARI)
up_to = 10000;
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; };
A052126(n) = if(1==n, n, n/vecmax(factor(n)[, 1]));
A319988(n) = ((n>1)&&(factor(n)[omega(n), 2]>1));
A323241aux(n) = if(n<=2, -n, if(n%2, 0, [A052126(n), A319988(n)]));
v323241 = rgs_transform(vector(up_to, n, A323241aux(n)));
A323241(n) = v323241[n];
CROSSREFS
Sequence in context: A323078 A331301 A002333 * A322311 A323237 A323238
KEYWORD
nonn
AUTHOR
Antti Karttunen, Jan 07 2019
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 April 23 15:20 EDT 2024. Contains 371916 sequences. (Running on oeis4.)