A070161 Nonprime numbers n such that q=phi(n)/(sigma(n)-n-1) is an integer and n is not a prime square.
15, 35, 95, 119, 143, 209, 287, 319, 323, 377, 527, 559, 779, 899, 903, 923, 989, 1007, 1189, 1199, 1343, 1349, 1763, 1919, 2159, 2507, 2759, 2911, 3239, 3599, 3827, 4031, 4607, 5183, 5207, 5249, 5459, 5543, 6439, 6887, 7067, 7279, 7739, 8159, 8639, 9179
Offset: 1
Keywords
Examples
n=35: phi(35)=24, sigma(35)=1+5+7+35=48, chowla(35)=12, quotient=2
Links
- Donovan Johnson, Table of n, a(n) for n = 1..10000
Crossrefs
Programs
-
Mathematica
Do[s=EulerPhi[n]/(DivisorSigma[1, n]-n-1); If[ !PrimeQ[n]&&!PrimeQ[Sqrt[n]]&&IntegerQ[s], Print[n]], {n, 2, 100000}]