OFFSET
1,2
COMMENTS
Numbers k such that the sum of divisors of k + the sum of totatives of k is prime.
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
EXAMPLE
a(4) = 7 is a term because 1+A083266(n) = 29 is prime.
MAPLE
f:= n -> numtheory:-sigma(n) + n*numtheory:-phi(n)/2: f(1):= 2:
select(t -> isprime(f(t)), [$1..2000]);
MATHEMATICA
{1}~Join~Select[Range[1331], PrimeQ[DivisorSigma[1, #] + # EulerPhi[#]/2] &] (* Michael De Vlieger, Apr 07 2021 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
J. M. Bergot and Robert Israel, Apr 07 2021
STATUS
approved