A051487 Numbers k such that phi(k) = phi(k - phi(k)).
2, 6, 12, 24, 48, 96, 150, 192, 300, 384, 600, 726, 750, 768, 1200, 1452, 1500, 1536, 2310, 2400, 2904, 3000, 3072, 3174, 3750, 4620, 4800, 5046, 5808, 5874, 6000, 6090, 6144, 6348, 6930, 7500, 7986, 9240, 9600, 10086, 10092, 10374, 11550, 11616, 11748, 12000
Offset: 1
References
- Richard K. Guy, Unsolved Problems in Number Theory, 3rd Edition, Springer, 2004, Section B42, p. 150.
Links
- Amiram Eldar, Table of n, a(n) for n = 1..10000 (terms 1..1000 from T. D. Noe)
- Aleksander Grytczuk, Florian Luca and Marek Wojtowicz, A conjecture of Erdős concerning inequalities for the Euler totient function, Publ. Math. Debrecen, Vol. 59, No. 1-2, (2001), pp. 9-16.
Programs
-
Haskell
a051487 n = a051487_list !! (n-1) a051487_list = [x | x <- [2..], let t = a000010 x, t == a000010 (x - t)] -- Reinhard Zumkeller, Jun 03 2013
-
Mathematica
Select[Range[11700], EulerPhi[ # ] == EulerPhi[ # - EulerPhi[ # ]] &] (* Farideh Firoozbakht, Jun 19 2005 *)
-
PARI
isA051487(n) = eulerphi(n) == eulerphi(n - eulerphi(n)) \\ Michael B. Porter, Dec 07 2009
Extensions
More terms from James Sellers
Comments