login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

Nonprime numbers k such that phi(k-phi(k)) = A054571(k) is a power of 2.
3

%I #17 Nov 08 2024 07:19:55

%S 4,6,8,9,10,12,14,16,18,20,22,24,25,28,32,36,38,39,40,42,44,46,48,50,

%T 55,56,58,62,64,65,72,76,77,80,84,88,92,94,96,100,112,116,118,124,128,

%U 134,144,152,158,160,165,168,176,184,188,192,200,202,224,232,235,236

%N Nonprime numbers k such that phi(k-phi(k)) = A054571(k) is a power of 2.

%H Amiram Eldar, <a href="/A070810/b070810.txt">Table of n, a(n) for n = 1..6018</a> (terms below 10^10)

%e For k = 168: 168 - phi(168) = 168-48 = 120, phi(120) = 32, a power of 2.

%t Do[s=EulerPhi[n-EulerPhi[n]]; If[IntegerQ[Log[2, s]]&&!PrimeQ[n], Print[n]], {n, 1, 256}]

%o (PARI) is(k) = if(k == 1 || isprime(k), 0, my(m = eulerphi(k - eulerphi(k))); m >> valuation(m, 2) == 1); \\ _Amiram Eldar_, Nov 08 2024

%Y Cf. A000010, A054571, A051953, A070556, A070806, A070807, A070809, A070811, A070812.

%K nonn

%O 1,1

%A _Labos Elemer_, May 08 2002