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.

A238605 Semiprimes n such that (n+1)/4 also is a semiprime.

Original entry on oeis.org

15, 35, 39, 55, 87, 155, 183, 203, 219, 247, 259, 295, 327, 339, 371, 471, 515, 535, 579, 583, 635, 707, 731, 803, 807, 835, 851, 871, 939, 995, 1011, 1047, 1059, 1067, 1111, 1147, 1191, 1195, 1203, 1207, 1211, 1219, 1255, 1315, 1339, 1355, 1363, 1383, 1507, 1527, 1563, 1591, 1643, 1651, 1687, 1707
Offset: 1

Views

Author

M. F. Hasler, Mar 01 2014

Keywords

Comments

A subsequence of Ruth-Aaron numbers A039752. The terms are by definition of the form n = 4k+3.

Crossrefs

Cf. A001414.

Programs

  • Mathematica
    Select[Range[2000],PrimeOmega[#]==PrimeOmega[(#+1)/4]==2&] (* Harvey P. Dale, Oct 17 2021 *)
  • PARI
    forstep( n=3,999,4,bigomega(n)==2 & bigomega((n+1)/4)==2 && print1(n","))