OFFSET
1,1
COMMENTS
This is the Euler Phi function of 3 more than the Cototient of n.
If n is noncomposite, a(n) = 2. Proof: For n = 1, phi(1 - phi(1) + 3) = phi(1-1+3) = phi(3) = 2. For n = p, phi(p - phi(p) + 3) = phi(p - (p-1) + 3) = phi(4) = 2.
If n is the product of twin primes, a(n) is the arithmetic mean of the prime factors. Equivalently, when n is the product of twin primes, a(n) +- 1 represents the largest and the smallest prime factors of n respectively.
LINKS
Antti Karttunen, Table of n, a(n) for n = 1..65537
EXAMPLE
a(15) = 4, Since phi(15 - phi(15) + 3) = 4. Note that 15 is the product of twin primes and that a(15) = 4 is the arithmetic mean of the prime factors of 15: (3+5)/2 = 4.
MAPLE
with(numtheory); seq( phi(k - phi(k) + 3), k=1..70);
MATHEMATICA
Table[EulerPhi[n - EulerPhi[n] + 3], {n, 100}]
PROG
(Magma) [EulerPhi(n-EulerPhi(n)+3): n in [1..100]]; // Vincenzo Librandi, Dec 08 2015
(PARI) A186749(n) = eulerphi(n - eulerphi(n) + 3); \\ Antti Karttunen, Mar 04 2018
(GAP) List([1..70], n->Phi(n-Phi(n)+3)); # Muniru A Asiru, Mar 04 2018
CROSSREFS
KEYWORD
nonn
AUTHOR
Wesley Ivan Hurt, Aug 29 2013
STATUS
approved