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!)
A306146 Numbers k such that A000010(A023900(k)) = A023900(A000010(k)). 4

%I #59 Feb 19 2020 07:23:59

%S 1,14,22,28,44,46,56,75,88,92,94,112,118,166,176,184,188,214,224,236,

%T 332,334,352,358,368,375,376,422,428,448,454,472,526,639,662,664,668,

%U 694,704,716,718,736,752,766,844,856,867,896,908,926,934,944,958,1006,1052,1075,1094,1126,1142,1174,1179,1324

%N Numbers k such that A000010(A023900(k)) = A023900(A000010(k)).

%C No term is a product of an odd number of distinct prime factors (because then A023900 is negative, i.e., contains no terms from A030230).

%C For known terms:

%C - a(n) is nonsquarefree iff A000010(n) is nonsquarefree.

%C - If a(n) is squarefree then A000010(n) and A023900(n) are both squarefree.

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

%e 75 is a term because A000010(A023900(75)) = A023900(A000010(75)) = 4.

%p isA306146 := proc(n)

%p local a239 ;

%p a239 := A023900(n) ;

%p if a239 >= 1 then

%p simplify( numtheory[phi](a239) = A023900(numtheory[phi](n)) );

%p else

%p false;

%p end if;

%p end proc:

%p for n from 1 to 1000 do

%p if isA306146(n) then

%p printf("%d,",n) ;

%p end if;

%p end do: # _R. J. Mathar_, Feb 14 2019

%t f[p_, e_] := 1 - p; d[1] = 1; d[n_] := Times @@ (f @@@ FactorInteger[n]); Select[Range[1324],(d1 = d[#]) > 0 && d[EulerPhi[#]] == EulerPhi[d1] &] (* _Amiram Eldar_, Feb 19 2020 *)

%o (PARI) a023900(n) = sumdivmult(n, d, d*moebius(d))

%o is(n) = sdm = a023900(n); if(sdm < 0, return(0), sdmphi = a023900(eulerphi(n)); eulerphi(sdm) == sdmphi) \\ _David A. Corneth_, Aug 17 2018

%Y Cf. A000010, A023900, A030230.

%K nonn

%O 1,2

%A _Torlach Rush_, Aug 11 2018

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 14 15:40 EDT 2024. Contains 375165 sequences. (Running on oeis4.)