OFFSET
1,1
COMMENTS
Zhang Ming-Zhi has shown that for every positive integer n, there is a prime p such that p*n is not a totient (see Reference and link, theorem 1).
REFERENCES
Richard K. Guy, Unsolved Problems in Number Theory, 3rd Edition, Springer, 2004, Section B36, p. 139.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
Zhang Ming-Zhi, On Nontotients, J. Number Theory, Vol. 43, No. 2 (1993), pp. 168-172.
FORMULA
a(A079695(n)) = 2.
EXAMPLE
a(6) = 19 because 19 * 6 = 114 is not a totient number and 19 is the least prime with this property. Also 15 * 6 = 90 is not either a totient number, so A282160(6) = 15 that is not a prime number.
PROG
(PARI) a(n) = my(p=2); while (istotient(p*n), p = nextprime(p+1)); p; \\ Michel Marcus, Oct 19 2020
CROSSREFS
KEYWORD
nonn
AUTHOR
Bernard Schott, Oct 19 2020
STATUS
approved