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.

A228184 Numbers k such that k^2 + k + 41 is semiprime.

Original entry on oeis.org

40, 41, 44, 49, 56, 65, 76, 81, 82, 84, 87, 89, 91, 96, 102, 104, 109, 117, 121, 122, 123, 126, 127, 130, 136, 138, 140, 143, 147, 155, 159, 161, 162, 163, 164, 170, 172, 173, 178, 184, 185, 186, 187, 190, 201, 204, 205, 207, 208, 209, 213, 215, 216, 217, 218
Offset: 1

Views

Author

Shyam Sunder Gupta, Aug 15 2013

Keywords

Comments

Subsequence of A007634. Numbers in A007634 but not in here are 420, 431, 491, 492, 514, 533, 573, etc. (A097822). - R. J. Mathar, Aug 17 2013

Examples

			a(3) = 44 is in the sequence because 44^2 + 44 + 41 = 43*47 is semiprime.
		

Crossrefs

Programs

  • Mathematica
    a = {}; Do[
    If[PrimeOmega[x^2 + x + 41] == 2, AppendTo[a, x]], {x, 1, 500}]; a