cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A185347 Semiprimes that are the sum of 10 consecutive primes.

Original entry on oeis.org

129, 158, 382, 1114, 1546, 2374, 2582, 3446, 3578, 6218, 6826, 7978, 8266, 9298, 9382, 10202, 12946, 14002, 15178, 15406, 15766, 16382, 16466, 17282, 17362, 18374, 18838, 19226, 19606, 23878, 24074, 25154, 25642, 26206, 29782, 30034, 30638, 32902, 33526, 34862, 34934, 35678, 35978, 36602
Offset: 1

Views

Author

Zak Seidov, Feb 15 2011

Keywords

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.

Crossrefs

Cf. A127337.

Programs

  • 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 *)
  • PARI
    {s=129;for(n=1,2000,if(2==bigomega(s), print1(s", ")); s=s-prime(n)+prime(n+10))}