A074920 Integers k such that phi(k) = 6k/Pi^2 rounded to nearest integer.
1, 2, 3, 4, 33, 39, 99, 3237, 9711, 2069301, 6207903, 45502509, 24091595067
Offset: 1
Examples
phi(99) = 60 and 6*99/Pi^2 = 60.1848...., which rounds off to 60. Hence 99 is a term of the sequence.
References
- James J. Tattersall, "Elementary Number Theory in Nine Chapters", Cambridge University Press, 2001.
Programs
-
Mathematica
s = Pi^2; l = {}; Do[ If[Abs[EulerPhi[n] - 6 n/ s] <= 0.5, l = Append[l, n]], {n, 1, 10^5}]; l
Extensions
a(10)-a(13) from Amiram Eldar, May 10 2019
Name edited by Michel Marcus, May 10 2019
Comments