OFFSET
1,1
COMMENTS
Or, semiprimes in A127337 (Numbers that are the sum of 10 consecutive primes).
a(1) = 3*43, all other terms are of the form 2*prime.
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
MATHEMATICA
(* First run the program for A109611 to define semiPrimeQ *) Select[Table[Plus@@Prime[Range[n, n + 9]], {n, 500}], semiPrimeQ] (* Alonso del Arte, Feb 15 2011 *)
Select[Total/@Partition[Prime[Range[600]], 10, 1], PrimeOmega[#]==2&] (* Harvey P. Dale, Sep 06 2014 *)
PROG
(PARI) {s=129; for(n=1, 2000, if(2==bigomega(s), print1(s", ")); s=s-prime(n)+prime(n+10))}
CROSSREFS
KEYWORD
nonn
AUTHOR
Zak Seidov, Feb 15 2011
STATUS
approved