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

A361021
Lexicographically earliest infinite sequence such that a(i) = a(j) => A007814(i) = A007814(j), A001065(i) = A001065(j) and A051953(i) = A051953(j), for all i, j >= 1.
2
1, 2, 3, 4, 3, 5, 3, 6, 7, 8, 3, 9, 3, 10, 11, 12, 3, 13, 3, 14, 15, 16, 3, 17, 18, 19, 20, 21, 3, 22, 3, 23, 24, 25, 26, 27, 3, 28, 29, 30, 3, 31, 3, 32, 33, 34, 3, 35, 36, 37, 38, 39, 3, 40, 29, 41, 42, 43, 3, 44, 3, 45, 46, 47, 48, 49, 3, 50, 51, 52, 3, 53, 3, 54, 55, 56, 48, 57, 3, 58, 59, 60, 3, 61, 42, 62, 63, 64, 3, 65, 38, 66, 67, 68, 69, 70, 3, 71
OFFSET
1,2
COMMENTS
Restricted growth sequence transform of the triplet [A007814(n), A001065(n), A051953(n)].
For all i, j >= 1:
A305801(i) = A305801(j) => a(i) = a(j),
a(i) = a(j) => A305895(i) = A305895(j),
a(i) = a(j) => A319346(i) = A319346(j).
LINKS
PROG
(PARI)
up_to = 100000;
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; };
A007814(n) = valuation(n, 2);
A001065(n) = (sigma(n)-n);
A051953(n) = (n-eulerphi(n));
Aux361021(n) = [A007814(n), A001065(n), A051953(n)];
v361021 = rgs_transform(vector(up_to, n, Aux361021(n)));
A361021(n) = v361021[n];
CROSSREFS
Cf. also A353560.
Differs from A353520 for the first time at n=254, where a(254) = 187, while A353520(254) = 125.
Sequence in context: A319349 A373981 A353520 * A373980 A322973 A305890
KEYWORD
nonn
AUTHOR
Antti Karttunen, Mar 03 2023
STATUS
approved