OFFSET
1,1
COMMENTS
No term of this sequence can be prime, since for a prime p, A075254(p)=2*p, hence not prime. - Michel Marcus, Jul 24 2015
From Robert Israel, Jul 24 2015: (Start)
Similarly, no term of the sequence can be a prime power.
LINKS
K. D. Bajpai, Table of n, a(n) for n = 1..12180
FORMULA
EXAMPLE
252 = 2*2*3*3*7; 252 + (2 + 2 + 3 + 3 + 7) = 252 + 17 = 269, which is prime.
MAPLE
filter:= n ->isprime(convert(map(convert, ifactors(n)[2], `*`), `+`)+n):
select(filter, [$1..1000]); # Robert Israel, Jul 24 2015
MATHEMATICA
upto=300; Rest[Select[Complement[Range[upto], Prime[Range[ PrimePi[upto]]]], PrimeQ[#+ Total[Times@@@FactorInteger[#]]]&]] (* Harvey P. Dale, Apr 20 2011 *)
Select[Range[500], PrimeQ[# + Total [Times @@@ FactorInteger[#]] && PrimeOmega[#] > 1] &] (* K. D. Bajpai, Sep 12 2014 *)
PROG
(PARI) sopfr(n)=my(f=factor(n)); sum(i=1, #f[, 1], f[i, 1]*f[i, 2])
is(n)=!isprime(n)&&isprime(n+sopfr(n)) \\ Charles R Greathouse IV, Jul 19 2011
CROSSREFS
KEYWORD
nonn,nice
AUTHOR
Patrick De Geest, Aug 15 1999
EXTENSIONS
Name clarified by Michel Marcus, Jul 24 2015
STATUS
approved