OFFSET
1,1
COMMENTS
Quite a number of terms are divisible by 3*5*17 = 255.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000 (terms 1..369 from R. J. Mathar)
EXAMPLE
m = 17425605 = 3*5*23*53*953 is a term since cototient(m) - phi(m) = 9712901 - 8712704 = 197 is an odd prime.
MATHEMATICA
Do[s=EulerPhi[n]; c=n-s; If[Greater[c, s]&&PrimeQ[c-s]&&OddQ[c-s]&&!PrimeQ[n], Print[{n, c-s, n/255}]], {n, 1, 10000000}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Labos Elemer, May 08 2003
STATUS
approved