OFFSET
1,1
COMMENTS
The corresponding primes are 2, 97, 684331371443, 37608910510519072144329748463290373800530563, ...
EXAMPLE
105 is in the sequence because the prime factors are {3, 5, 7} with the sum 3 + 5 + 7 = 15, and 3^14 + 5^14 + 7^14 = 684331371443 is a prime number.
MAPLE
with(numtheory):nn:=1500:
for n from 1 to nn do:
d:=factorset(n):n0:=nops(d):s0:=add(d[i], i=1..n0):
p:=add(d[i]^(s0-1), i=1..n0):
if isprime(p)
then
printf(`%d, `, n):
else fi:
od:
MATHEMATICA
ok[n_] := Block[{p = First /@ FactorInteger[n]}, PrimeQ@ Total[p^(Total[p] - 1)]]; Select[Range[1024], ok] (* Giovanni Resta, Sep 03 2018 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Michel Lagneau, Sep 03 2018
EXTENSIONS
More terms from Giovanni Resta, Sep 03 2018
STATUS
approved