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!)
A290002 Numbers k such that psi(phi(k)) = phi(psi(k)). 6

%I #31 Jul 30 2023 09:23:25

%S 1,10,18,20,36,40,54,70,72,78,80,108,110,140,144,156,160,162,174,198,

%T 216,220,222,230,234,246,280,288,294,312,320,324,348,396,414,426,432,

%U 438,440,444,450,460,468,470,486,492,534,560,576,588,594,624,640,648,666,696,702,770,792,828,846,852

%N Numbers k such that psi(phi(k)) = phi(psi(k)).

%C Squarefree terms are 1, 10, 70, 78, 110, 174, 222, 230, 246, 426, 438, ...

%C Common terms of this sequence and A033632 are 1, 14406, 544500, 141118050, ...

%C From _Robert Israel_, Sep 03 2017: (Start)

%C Includes 2^i*3^j if i >= 1 and j >= 2, i.e., 3*A033845, and A020714(n) for n >= 1.

%C If an even number m is in the sequence, then so is 2*m.

%C Are there any odd terms other than 1? (End)

%C a(1) = 1 is the only odd term. LHS of equation allows for 1 and 3 but only for k <= 6. RHS allows for 1 and only for k = 1. - _Torlach Rush_, Jul 28 2023

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

%p psi:= proc(n) n*mul((1+1/i[1]), i=ifactors(n)[2]) end:

%p select(psi @ numtheory:-phi = numtheory:-phi @ psi, [$1..1000]); # _Robert Israel_, Sep 03 2017

%t f[n_] := n Sum[MoebiusMu[d]^2/d, {d, Divisors@ n}]; Select[Range[10^3], f[EulerPhi@ #] == EulerPhi[f@ #] &] (* _Michael De Vlieger_, Sep 03 2017 *)

%o (PARI) a001615(n) = my(f=factor(n)); prod(i=1, #f~, f[i, 1]^f[i, 2] + f[i, 1]^(f[i, 2]-1));

%o isok(n) = eulerphi(a001615(n))==a001615(eulerphi(n)); \\ after _Charles R Greathouse IV_ at A001615

%Y Cf. A000010, A001615, A020714, A033632, A033845.

%K nonn,easy

%O 1,2

%A _Altug Alkan_, Sep 03 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 June 28 01:30 EDT 2024. Contains 373761 sequences. (Running on oeis4.)