OFFSET
1,1
COMMENTS
This sequence, A113690, contains semiprimes from the center straight right along the x-axis in the semiprime spiral of A113688-A113689. Semiprimes from the center straight left along the x-axis in the semiprime spiral are A113692. A113693 contains semiprimes from the center straight up the y-axis in the semiprime spiral. Semiprimes from the center straight down the y-axis in the semiprime spiral are A113691.
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..1000
EXAMPLE
a(10) = 4*37^2 - 3*37 + 1 = 5366 = 2 * 2683.
a(11) = 4*38^2 - 3*38 + 1 = 5663 = 7 * 809.
a(10) and a(11) are horizontally adjacent in the prime spiral, hence part of a clump and not isolated semiprimes as in A113688.
a(57) = 4*156^2 - 3*156 + 1 = 96877 = 11 * 8807 is the greatest member under 10^5.
MATHEMATICA
Select[Table[4*n^2 - 3*n + 1, {n, 150}], PrimeOmega[#] == 2&] (* Vincenzo Librandi, Sep 22 2012 *)
PROG
(Magma) IsSemiprime:= func<n | &+[d[2]: d in Factorization(n)] eq 2>; [s: n in [1..120] | IsSemiprime(s) where s is 4*n^2 - 3*n + 1]; // Vincenzo Librandi, Sep 22 2012
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Jonathan Vos Post, Nov 05 2005
EXTENSIONS
Corrected a(6) by Vincenzo Librandi, Sep 22 2012
STATUS
approved