OFFSET
1,1
COMMENTS
Numbers with just one prime factor (prime powers) trivially satisfy the defining condition and are not included.
LINKS
Harry J. Smith, Table of n, a(n) for n = 1..1000
EXAMPLE
The prime factors of 12 are 2 and 3, which add up to 5, a prime.
MATHEMATICA
Reap[For[n = 6, n <= 1000, n++, pp = FactorInteger[n][[All, 1]]; If[Length[pp] >= 2 && PrimeQ[Total[pp]], Sow[n]]]][[2, 1]] (* Jean-François Alcover, Oct 16 2016 *)
PROG
(PARI) sopf(n)= { local(f, s=0); f=factor(n); for(i=1, matsize(f)[1], s+=f[i, 1]); return(s) } { n=0; for (m=1, 10^9, if (omega(m) > 1 && isprime(sopf(m)), write("b066038.txt", n++, " ", m); if (n==1000, return)) ) } \\ Harry J. Smith, Nov 07 2009
(PARI) isok(n) = (omega(n) > 1) && isprime(vecsum(factor(n)[, 1])); \\ Michel Marcus, Dec 15 2018
CROSSREFS
KEYWORD
nonn
AUTHOR
Joseph L. Pe, Dec 12 2001
EXTENSIONS
More terms from Vladeta Jovovic, Dec 13 2001
STATUS
approved