OFFSET
1,1
EXAMPLE
The third term of A229265 is 200 and sigma(200) + tau(200) + phi(200) = 465 + 12 + 80 = 557 is prime.
MAPLE
with(numtheory); P:=proc(q) local a, n; for n from 1 to q do a:=sigma(n)+tau(n)+phi(n);
if isprime(a) then print(a); fi; od; end: P(10^6);
MATHEMATICA
Select[Table[DivisorSigma[0, n]+DivisorSigma[1, n]+EulerPhi[n], {n, 10^6}], PrimeQ] (* Harvey P. Dale, Oct 03 2023 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Paolo P. Lava, Sep 18 2013
STATUS
approved