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

A353646
a(n) = phi(sigma(n)) / gcd(phi(n), phi(sigma(n))).
4
1, 2, 1, 3, 1, 2, 2, 2, 2, 3, 2, 3, 1, 4, 1, 15, 3, 4, 4, 3, 4, 6, 4, 2, 3, 1, 8, 2, 2, 3, 8, 9, 4, 9, 2, 6, 1, 8, 1, 3, 3, 8, 10, 6, 1, 12, 8, 15, 6, 3, 3, 7, 9, 16, 3, 4, 8, 6, 8, 3, 1, 16, 4, 63, 1, 12, 16, 9, 8, 2, 12, 4, 1, 1, 3, 4, 8, 2, 16, 15, 55, 9, 12, 4, 9, 20, 4, 6, 3, 3, 2, 12, 16, 24, 4, 9, 7, 18, 4, 9
OFFSET
1,2
COMMENTS
Numerator of ratio A062401(n) / A000010(n), phi(sigma(n)) / phi(n).
FORMULA
a(n) = A062401(n) / A353643(n) = A062401(n) / gcd(A062401(n), A353636(n)).
MATHEMATICA
a[n_] := (phi = EulerPhi[DivisorSigma[1, n]])/GCD[EulerPhi[n], phi]; Array[a, 100] (* Amiram Eldar, May 06 2022 *)
PROG
(PARI) A353646(n) = { my(ps=eulerphi(sigma(n))); (ps / gcd(eulerphi(n), ps)); };
CROSSREFS
Sequence in context: A304081 A101312 A241273 * A154263 A293435 A294901
KEYWORD
nonn,frac
AUTHOR
Antti Karttunen, May 06 2022
STATUS
approved