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

A039768
Numbers k such that gcd(phi(k), k-1) = number of divisors of (k-1).
1
2, 3, 105, 133, 153, 185, 345, 377, 425, 585, 637, 665, 777, 805, 825, 873, 897, 905, 949, 1017, 1090, 1113, 1209, 1225, 1261, 1305, 1309, 1385, 1449, 1525, 1545, 1573, 1645, 1681, 1785, 1813, 1833, 1865, 1885, 1957, 1981, 2009, 2057, 2077, 2105
OFFSET
1,1
LINKS
EXAMPLE
phi(105)=48, gcd(48,104)=8, 104 is divisible by {1,2,4,8,13,26,52,104}.
MATHEMATICA
aQ[n_] := GCD[EulerPhi[n], n - 1] == DivisorSigma[0, n - 1]; Select[Range[2, 2110], aQ] (* Amiram Eldar, Aug 28 2019 *)
CROSSREFS
Sequence in context: A041589 A371122 A371229 * A097653 A164926 A129729
KEYWORD
nonn,easy
STATUS
approved