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.

A113524 Semiprimes in A056106.

Original entry on oeis.org

25, 141, 185, 235, 291, 753, 851, 955, 1565, 1851, 2495, 3235, 3641, 4295, 5251, 5765, 6031, 6865, 8061, 9353, 9691, 10741, 11103, 14215, 14631, 15481, 16355, 16801, 17711, 21085, 25855, 27553, 28131, 28715, 29305, 29901
Offset: 1

Views

Author

Jonathan Vos Post, Jan 12 2006

Keywords

Comments

Intersection of A056106 and A001358.

Examples

			a(1) = 25 because A056106(3) = 25 = 5^2 is semiprime.
a(36) = 29901 because A056106(100) = 29901 = 3 * 9967 is semiprime.
		

Crossrefs

Programs

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