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

A225680
Denominators of phi(k)/k, as k runs through the squarefree numbers (A005117).
4
1, 2, 3, 5, 3, 7, 5, 11, 13, 7, 15, 17, 19, 7, 11, 23, 13, 29, 15, 31, 33, 17, 35, 37, 19, 13, 41, 7, 43, 23, 47, 51, 53, 11, 19, 29, 59, 61, 31, 65, 33, 67, 69, 35, 71, 73, 37, 77, 13, 79, 41, 83, 85, 43, 87, 89, 91, 31, 47, 95, 97, 101, 51, 103, 35, 53, 107
OFFSET
1,2
COMMENTS
To every fraction taken by the arithmetical function m -> phi(m)/m there is exactly one n such that A225679(n)/A225680(n) is equal to it.
LINKS
FORMULA
a(n)=A005117(n)/gcd(A000010(A005117(n)),A005117(n)).
EXAMPLE
A005117(5)=6, phi(6)/6=2/6=1/3, so a(5)=3.
MATHEMATICA
s = Select[Range[200], SquareFreeQ]; Denominator[EulerPhi[s]/s] (* T. D. Noe, May 13 2013 *)
PROG
(PARI) lista(nn) = apply(x->(denominator(eulerphi(x)/x)), Vec(select(issquarefree, [1..nn], 1))); \\ Michel Marcus, Feb 22 2021
CROSSREFS
Cf. A225679 (numerators).
Sequence in context: A341643 A073482 A318411 * A346091 A107685 A161984
KEYWORD
nonn,frac,easy
AUTHOR
Franz Vrabec, May 12 2013
STATUS
approved