OFFSET
1,1
COMMENTS
Larger of the twin primes (A006512) is a term.
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
EXAMPLE
51 is a term as d(51) = 4 and 51-4 = 47 is a prime.
MAPLE
with(numtheory): for n from 3 to 500 do if isprime(n-tau(n)) then printf(`%d, `, n) fi:od: # James A. Sellers, Feb 18 2002
MATHEMATICA
Select[Range[400], PrimeQ[#-DivisorSigma[0, #]]&] (* Harvey P. Dale, May 22 2013 *)
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Amarnath Murthy, Feb 17 2002
EXTENSIONS
More terms from James A. Sellers, Feb 18 2002
STATUS
approved