login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A115919
Numbers k such that sigma(k) - phi(k) is a prime number.
5
2, 3, 4, 5, 7, 8, 9, 11, 13, 16, 17, 19, 23, 25, 29, 31, 32, 36, 37, 41, 43, 47, 50, 53, 59, 61, 67, 71, 73, 79, 81, 83, 89, 97, 101, 103, 107, 109, 113, 121, 127, 128, 131, 137, 139, 149, 151, 157, 163, 167, 173, 179, 181, 191, 193, 197, 199, 211, 223, 225, 227
OFFSET
1,1
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
EXAMPLE
sigma(81) - phi(81) = 67, a prime.
MATHEMATICA
Select[Range[300], PrimeQ[DivisorSigma[1, #]-EulerPhi[#]]&] (* Harvey P. Dale, Feb 25 2011 *)
PROG
(PARI) is(n)=isprime(sigma(n)-eulerphi(n)) \\ Charles R Greathouse IV, Nov 27 2013
CROSSREFS
Cf. A038344.
Sequence in context: A096165 A164336 A348263 * A038701 A127072 A341089
KEYWORD
nonn
AUTHOR
Giovanni Resta, Feb 06 2006
STATUS
approved