OFFSET
1,1
COMMENTS
Motivated by the fate of sequence A072326.
a(546) > 5*10^9. - Michel Marcus, Aug 06 2017
a(546) = 7975795464. When n is even the search can be sped up by observing that the exponents of the odd prime factors of n*a(n) must be even, otherwise the sum of the proper divisors n*a(n) is even and cannot be prime. So, if n is even, a(n) is equal to c*2^s*m^2, where c is the squarefree part of the odd part of n, s is 0 or 1, and m is a suitable integer. - Giovanni Resta, Aug 06 2017
LINKS
Michel Marcus and Giovanni Resta, Table of n, a(n) for n = 1..1000 (first 545 terms from Michel Marcus)
FORMULA
a(A037020(n)) = 1.
MATHEMATICA
Table[SelectFirst[Range[10^7], PrimeQ[DivisorSigma[1, #] - #] &[# n] &] /. k_ /; MissingQ@ k -> -1, {n, 77}] (* Michael De Vlieger, Aug 01 2017 *)
PROG
(PARI) a(n) = {my(k=1); while (!isprime(sigma(k*n)-k*n), k++); k; }
CROSSREFS
KEYWORD
nonn
AUTHOR
Altug Alkan, Aug 01 2017
STATUS
approved