login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A340762 Numbers k such that iterations of phi(k), phi(phi(k)), ... end in ... 4, 2, 1. 2

%I #26 Dec 27 2021 23:46:27

%S 4,5,8,10,11,12,13,15,16,17,20,21,22,23,24,25,26,28,29,30,31,32,33,34,

%T 35,36,37,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,55,56,57,58,59,

%U 60,61,62,63,64,65,66,67,68,69,70,71,72

%N Numbers k such that iterations of phi(k), phi(phi(k)), ... end in ... 4, 2, 1.

%C Infinite set (see reference).

%H Robert Israel, <a href="/A340762/b340762.txt">Table of n, a(n) for n = 1..10000</a>

%H Eliot T. Jacobson and Alan E. Parks, <a href="https://www.jstor.org/stable/2323032?seq=1">Infinite branches of the phi-tree</a>, Amer. Math. Monthly, Vol. 93, No. 7 (August-September 1986), pp. 552-554.

%H Keith Matthews, <a href="http://www.numbertheory.org/php/carmichael.html">Solving phi(x)=n, where phi(x) is Euler's totient function</a>.

%e 11 is in the list because phi(phi(11)))) = phi(10) = 4.

%p filter:= proc(n) option remember;

%p if n < 4 then false

%p elif n = 4 then true

%p else procname(numtheory:-phi(n))

%p fi

%p end proc:

%p select(filter, [$4..100]); # _Robert Israel_, Dec 23 2021

%t Select[Range[4, 72], FixedPointList[EulerPhi, #][[-4]] == 4 &] (* _Amiram Eldar_, Jan 27 2021 *)

%o (PARI) isok(k) = if (k>=4, while((k!=6) && (k!=4), k=eulerphi(k))); k == 4; \\ _Michel Marcus_, Feb 01 2021

%Y Cf. A000010, A340765 (complement relative to {n>=4}).

%Y Cf. A003434, A032358, A049108.

%K nonn

%O 1,1

%A _Franz Vrabec_, Jan 20 2021

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)