OFFSET
1,1
COMMENTS
Dence and Pomerance showed that the asymptotic number of the terms below x is ~ (3/8) * x/log(x).
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
Thomas Dence and Carl Pomerance, Euler's function in residue classes, in: K. Alladi, P. D. T. A. Elliott, A. Granville and G. Tenebaum (eds.), Analytic and Elementary Number Theory, Developments in Mathematics, Vol. 1, Springer, Boston, MA, 1998, pp. 7-20, alternative link.
EXAMPLE
23 is a term since phi(23) = 22 == 10 (mod 12).
MATHEMATICA
Select[Range[800], Mod[EulerPhi[#], 12] == 10 &]
PROG
(Magma) [k:k in [1..850]| EulerPhi(k) mod 12 eq 10]; // Marius A. Burtea, Feb 14 2020
CROSSREFS
KEYWORD
nonn
AUTHOR
Amiram Eldar, Feb 14 2020
STATUS
approved