A091495 Odd squarefree numbers k such that k/phi(k) > 2, where phi is Euler's totient function.
105, 165, 195, 1155, 1365, 1785, 1995, 2145, 2415, 2805, 3003, 3045, 3135, 3255, 3315, 3705, 3795, 3885, 3927, 4305, 4389, 4485, 4515, 4641, 4785, 4845, 4935, 5115, 5187, 5313, 5565, 5655, 5865, 6045, 6105, 6195, 6405, 6555, 6765, 7035, 7095, 7215
Offset: 1
Keywords
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000 (terms 1..1000 from T. D. Noe)
Programs
-
Mathematica
lst={}; Do[f=FactorInteger[n]; s=Times@@Last/@f; If[s==1&&Times@@(1-1/(First/@f))<1/2, AppendTo[lst, n]], {n, 3, 10000, 2}]; lst Select[Range[1,7301,2],SquareFreeQ[#]&/EulerPhi[#]>2&] (* Harvey P. Dale, Jul 10 2017 *)
-
PARI
is(k) = if(!(k%2), 0, my(f=factor(k)); issquarefree(f) && k / eulerphi(f) > 2); \\ Amiram Eldar, Nov 21 2024
Comments