A068390 Numbers k such that sigma(k) = 4*phi(k).
14, 105, 248, 418, 1485, 3135, 3596, 3956, 4064, 5396, 8636, 20026, 23374, 25714, 35074, 35343, 39105, 41656, 55154, 56134, 56536, 71145, 74613, 87087, 124605, 150195, 175305, 192855, 263055, 393104, 413655, 421005, 474548, 604012, 697851, 711988, 819772
Offset: 1
References
- D. S. Mitrinovic et al., Handbook of Number Theory, Kluwer, p. 88.
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000 (calculated using data from Jud McCranie, terms 1..1000 from Donovan Johnson)
- Kevin A. Broughan and Daniel Delbourgo, On the Ratio of the Sum of Divisors and Euler’s Totient Function I, Journal of Integer Sequences, Vol. 16 (2013), Article 13.8.8.
- Kevin A. Broughan and Qizhi Zhou, On the Ratio of the Sum of Divisors and Euler's Totient Function II, Journal of Integer Sequences, Vol. 17 (2014), Article 14.9.2.
- Farideh Firoozbakht and M. F. Hasler, Variations on Euclid's formula for Perfect Numbers, JIS 13 (2010) #10.3.1
Crossrefs
Programs
-
Magma
[n: n in [1..10^6] | SumOfDivisors(n) eq 4*EulerPhi(n)]; // Vincenzo Librandi, Sep 25 2017
-
Mathematica
Select[Range[900000],DivisorSigma[1,#]==4EulerPhi[#]&] (* Harvey P. Dale, Nov 29 2013 *)
-
PARI
for(n=1,300000, if(sigma(n)==4*eulerphi(n),print1(n,",")))
Extensions
More terms from Carl Najafi, Aug 16 2011
Comments