A113690 Semiprimes in A054552.
86, 298, 371, 1243, 1541, 2426, 2627, 3053, 4258, 5366, 5663, 6281, 6602, 6931, 7613, 8327, 9073, 9458, 10661, 13283, 14702, 15191, 16706, 18293, 18838, 23486, 25361, 26002, 26651, 27973, 28646, 34318, 35063, 36577, 38123, 41311, 43786, 44627
Offset: 1
Examples
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.
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..1000
Programs
-
Magma
IsSemiprime:= func
; [s: n in [1..120] | IsSemiprime(s) where s is 4*n^2 - 3*n + 1]; // Vincenzo Librandi, Sep 22 2012 -
Mathematica
Select[Table[4*n^2 - 3*n + 1, {n, 150}], PrimeOmega[#] == 2&] (* Vincenzo Librandi, Sep 22 2012 *)
Extensions
Corrected a(6) by Vincenzo Librandi, Sep 22 2012
Comments