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!)
A297365 Numbers k such that uphi(k)*usigma(k) = uphi(k+1)*usigma(k+1), where uphi is the unitary totient function (A047994) and usigma the sum of unitary divisors (A034448). 1

%I #13 Nov 09 2023 16:57:45

%S 5,11,19,71,247,271,991,2232,6200,8271,10295,16744,18496,18576,25704,

%T 26656,102175,122607,166624,225939,301103,747967,7237384,7302592,

%U 15760224,21770800,28121184,72967087,98617024,104577848,173859007,253496176,335610184,371191600

%N Numbers k such that uphi(k)*usigma(k) = uphi(k+1)*usigma(k+1), where uphi is the unitary totient function (A047994) and usigma the sum of unitary divisors (A034448).

%C Equivalently, numbers k such that A191414(k) = A191414(k+1). - _Amiram Eldar_, Nov 09 2023

%H Amiram Eldar, <a href="/A297365/b297365.txt">Table of n, a(n) for n = 1..47</a> (terms below 10^11)

%e 11 is in the sequence since uphi(11) * usigma(11) = 10 * 12 = uphi(12) * usigma(12) = 6 * 20 = 120.

%t usigma[n_] := If[n == 1, 1, Times @@ (1 + Power @@@ FactorInteger[n])];

%t uphi[n_] := (Times @@ (Table[#[[1]]^#[[2]] - 1, {1}] & /@ FactorInteger[n]))[[1]]; u[n_] := uphi[n]*usigma[n]; aQ[n_] := u[n] == u[n + 1]; Select[Range[10^6], aQ]

%o (PARI) A191414(n) = {my(f = factor(n)); prod(i = 1, #f~, f[i, 1]^(2*f[i, 2])-1); }

%o lista(kmax) = {my(a1 = 1, a2); for(k = 2, kmax, a2 = A191414(k); if(a1 == a2, print1(k-1, ", ")); a1 = a2); } \\ _Amiram Eldar_, Nov 09 2023

%Y The unitary version of A244439.

%Y Cf. A034448, A047994, A191414.

%K nonn

%O 1,1

%A _Amiram Eldar_, Dec 29 2017

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 May 1 14:36 EDT 2024. Contains 372174 sequences. (Running on oeis4.)