OFFSET
1,2
COMMENTS
The average value of phi(n) can be approximated for large n by 6n/Pi^2 (Tattersall, p. 162).
REFERENCES
James J. Tattersall, "Elementary Number Theory in Nine Chapters", Cambridge University Press, 2001.
EXAMPLE
phi(99) = 60 and 6*99/Pi^2 = 60.1848...., which rounds off to 60. Hence 99 is a term of the sequence.
MATHEMATICA
s = Pi^2; l = {}; Do[ If[Abs[EulerPhi[n] - 6 n/ s] <= 0.5, l = Append[l, n]], {n, 1, 10^5}]; l
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Joseph L. Pe, Oct 01 2002
EXTENSIONS
a(10)-a(13) from Amiram Eldar, May 10 2019
Name edited by Michel Marcus, May 10 2019
STATUS
approved