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.

A113525 Semiprimes in A056107.

Original entry on oeis.org

4, 49, 301, 589, 973, 2353, 2701, 3073, 4333, 5293, 5809, 6349, 6913, 7501, 8749, 9409, 10801, 11533, 13069, 14701, 15553, 16429, 23233, 24301, 25393, 27649, 30001
Offset: 1

Views

Author

Jonathan Vos Post, Jan 12 2006

Keywords

Comments

Intersection of A056107 and A001358.

Examples

			a(1) = 4 because A056107(1) = 3*1^2 + 1 = 4 = 2^2 is semiprime.
a(16) = 9409 because A056107(56) = 3*56^2 + 1 = 9409 = 97^2 is semiprime.
a(27) = 30001 because A056107(100) = 3*100^2 + 1 = 30001 = 19 * 1579 is semiprime.
		

Crossrefs

Programs

  • Mathematica
    Select[Array[3 #^2 + 1 &, 100], PrimeOmega[#] == 2 &] (* Michael De Vlieger, Mar 17 2021 *)