login

Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.

A020490
Numbers k such that phi(k) <= sigma_0(k).
9
1, 2, 3, 4, 6, 8, 10, 12, 18, 24, 30
OFFSET
1,2
COMMENTS
The positive integers k such that 2^phi(k) <= 2*k form the subsequence {1, 2, 3, 4, 6, 8, 10, 12} (De Koninck & Mercier). - Bernard Schott, May 02 2022
REFERENCES
J.-M. De Koninck & A. Mercier, 1001 Problèmes en Théorie Classique des Nombres, Problème 750 pp. 95, 319-320, Ellipses Paris 2004.
MATHEMATICA
Select[Range@ 1000000, EulerPhi@ # <= DivisorSigma[0, #] &] (* Michael De Vlieger, Oct 13 2015 *)
PROG
(PARI) isok(n) = eulerphi(n) <= numdiv(n); \\ Michel Marcus, Oct 13 2015
CROSSREFS
Sequence in context: A067128 A245779 A120432 * A217660 A275581 A014875
KEYWORD
nonn,fini,full
STATUS
approved