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.

A113527 Semiprimes in A056108.

Original entry on oeis.org

15, 115, 155, 201, 253, 445, 785, 1345, 2215, 3503, 3711, 4145, 4841, 5853, 6395, 7855, 9131, 12353, 13535, 14353, 16503, 18331, 19281, 20255, 20751, 21253, 21761, 23853, 24935, 26603, 29503, 30101
Offset: 1

Views

Author

Jonathan Vos Post, Jan 12 2006

Keywords

Comments

Intersection of A056108 and A001358.

Examples

			a(1) = 15 because A056108(2) = 15 = 3 * 5 is semiprime.
a(2) = 115 because A056108(6) = 115 = 5 * 23 is semiprime.
a(32) = 30101 because A056108(100) = 30101 = 31 * 971 is semiprime.
		

Crossrefs

Programs

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

Formula

{a(n)} = {3*n^2 + n + 1 iff semiprime}. {a(n)} = A056108 INTERSECT A001358.