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.

A242331 Numbers k such that k^2 + 3 is a semiprime.

Original entry on oeis.org

1, 6, 16, 18, 20, 24, 26, 32, 34, 36, 40, 44, 46, 48, 56, 60, 66, 68, 78, 80, 88, 98, 100, 102, 104, 108, 116, 118, 120, 128, 136, 148, 152, 164, 170, 174, 176, 182, 188, 190, 192, 196, 200, 204, 212, 220, 226, 232, 234, 238, 246, 250, 252, 258, 260, 262, 266
Offset: 1

Views

Author

Vincenzo Librandi, May 14 2014

Keywords

Comments

The semiprimes of this form are: 4, 39, 259, 327, 403, 579, 679, 1027, 1159, 1299, 1603, 1939, 2119, 2307, 3139, 3603, 4359, 4627, ...

Crossrefs

Programs

  • Magma
    IsSemiprime:=func; [n: n in [0..300] | IsSemiprime(s) where s is n^2+3];
  • Mathematica
    Select[Range[300], PrimeOmega[#^2 + 3] == 2 &]