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!)
A293184 Numbers k such that bphi(k) = bphi(k+1), where bphi(k) is the bi-unitary analog of Euler's totient function (A116550). 7

%I #27 Jul 16 2022 07:14:16

%S 1,14,20,57,187,188,916,1603,93928,142891,432976,549815,692259,773887,

%T 872191,4297168,9478088,127162432,127991488,129015616,132527167

%N Numbers k such that bphi(k) = bphi(k+1), where bphi(k) is the bi-unitary analog of Euler's totient function (A116550).

%C 187 is the first solution to bphi(k) = bphi(k+1) = bphi(k+2).

%C a(22) > 1.6*10^9, if it exists. - _Amiram Eldar_, Jul 16 2022

%e 14 is in the sequence since bphi(14) = bphi(15) = 9.

%t bphi[1] = 1; bphi[n_] := With[{pp = Power @@@ FactorInteger[n]}, Count[Range[n], m_ /; Intersection[pp, Power @@@ FactorInteger[m]] == {}]]; a={}; b1=0; Do[b2 = bphi[k];If[b1 == b2, a = AppendTo[a, k - 1]]; b1 = b2, {k, 1, 10^3}]; a (* after _Jean-François Alcover_ at A116550 *)

%o (PARI) udivs(n) = {my(d = divisors(n)); select(x->(gcd(x, n/x)==1), d); }

%o gcud(n, m) = vecmax(setintersect(udivs(n), udivs(m)));

%o biuphi(n) = if (n==1, 1, sum(k=1, n-1, gcud(n, k) == 1));

%o isok(n) = biuphi(n) == biuphi(n+1);

%o lista(nn) = {x = biuphi(1); for (n=2, nn, y = biuphi(n); if (x==y, print1(n-1, ", ")); x = y;);} \\ _Michel Marcus_, Nov 09 2017

%Y Cf. A001274, A116550, A287055, A294030.

%K nonn,more

%O 1,2

%A _Amiram Eldar_, Oct 01 2017

%E a(10) from _Michel Marcus_, Nov 11 2017

%E a(11) from _Michel Marcus_, Nov 12 2017

%E a(12)-a(21) from _Amiram Eldar_, Jul 16 2022

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 16 14:51 EDT 2024. Contains 371749 sequences. (Running on oeis4.)