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!)
A225320 The number of iterations of the bi-unitary totient A116550 needed to reach 1 starting with n. 2

%I #17 Jul 16 2022 07:14:21

%S 0,1,2,3,4,3,4,5,6,4,5,6,7,7,7,8,9,7,8,8,8,8,9,10,11,8,9,9,10,8,9,10,

%T 10,11,12,11,12,10,10,10,11,9,10,13,12,11,12,12,13,12,13,10,11,11,10,

%U 12,10,10,11,12,13,13,14,15,13,13,14,13,14,11,12,14,15,12,13,15,14,10,11,14

%N The number of iterations of the bi-unitary totient A116550 needed to reach 1 starting with n.

%H Amiram Eldar, <a href="/A225320/b225320.txt">Table of n, a(n) for n = 1..10000</a>

%F The smallest x such that A116550^x(n) = 1, where the operation Op^x denotes x nestings of the operator Op.

%e a(6) = 3 because the first step is A116550(6) = 3, the second A116550(3) = 2, the third A116550(2) = 1, where 1 is reached.

%p A225320 := proc(n)

%p option remember;

%p if n = 1 then

%p 0;

%p else

%p 1+procname(A116550(n)) ;

%p end if;

%p end proc:

%t A116550[1] = 1; A116550[n_] := With[{pp = Power @@@ FactorInteger[n]}, Count[Range[n], m_ /; Intersection[pp, Power @@@ FactorInteger[m]] == {}]]; a[n_] := a[n] = If[n == 1, 0, 1 + a[A116550[n]]]; Table[a[n], {n, 1, 80}] (* _Jean-François Alcover_, Dec 16 2013 *)

%Y Cf. A005424 (positions of records), A116550.

%K nonn

%O 1,3

%A _R. J. Mathar_, May 05 2013

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 August 27 11:27 EDT 2024. Contains 375468 sequences. (Running on oeis4.)