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.

A215725 Numbers x such that 2*x+1 is prime as is 2*x+3 and x^2+x+41 and (x+1)^2+(x+1)+41.

Original entry on oeis.org

1, 2, 5, 8, 14, 20, 29, 35, 50, 53, 68, 74, 98, 113, 119, 134, 230, 404, 413, 509, 575, 650, 713, 725, 809, 893, 935, 938, 974, 1013, 1043, 1133, 1190, 1400, 1625, 1730, 1778, 1958, 2045, 2318, 2510, 2933, 2939, 3224, 3344, 3389, 3743, 3773
Offset: 1

Views

Author

Pierre CAMI, Aug 22 2012

Keywords

Comments

Subsequence of A056561.
p=x^2+x+41 and q = (x+1)^2+(x+1)+41, (x+p)^2+x+p+41 = p*q is a semiprime.

Examples

			1^2+1+41=43=p , 2^2+2+41=47=q , (43+1)^2+(43+1)+41=p*q.
		

Crossrefs

Programs

  • Mathematica
    Select[Range[4000],And@@PrimeQ[{2#+1,2#+3,#^2+#+41,(#+1)^2+#+42}]&] (* Harvey P. Dale, Jun 02 2014 *)