A116518 Odd numbers k such that k and phi(k) have the same number of divisors.
1, 3, 15, 255, 65535, 77805, 161595, 331695, 575025, 664335, 765765, 1601145, 2250885, 2380833, 2690415, 3271905, 3828825, 4107285, 5181813, 5778045, 5871285, 6007365, 6613425, 7448805, 9258795, 9787869, 9935055, 10503675, 10554705, 10724805, 11060595
Offset: 1
Keywords
Links
- Donovan Johnson, Table of n, a(n) for n = 1..1000
- Djamel Bellaouar, Abdelmadjid Boudaoud and Rafael Jakimczuk, Notes on the equation d(n) = d(phi(n)) and related inequalities, Math. Slovaca 73 (2023), no. 3, 613-632.
Programs
-
Mathematica
Select[Range[1,10510001,2],DivisorSigma[0,#]==DivisorSigma[ 0, EulerPhi[#]]&] (* Harvey P. Dale, Jan 30 2013 *)
-
PARI
forstep(n=1,10^8,2,if(numdiv(n)==numdiv(eulerphi(n)),print1(n,", ")))
Comments