A113693 Semiprimes in A054556.
4, 15, 34, 249, 391, 565, 771, 886, 1915, 3814, 5149, 5739, 6046, 7354, 9169, 10765, 11611, 15814, 16321, 18429, 20665, 22426, 24259, 28141, 29499, 32311, 36769, 39106, 43161, 48291, 52786, 53709, 57481, 60394, 63379, 65409, 67471, 69565
Offset: 1
Examples
a(27) = 4*97^2 - 9*97 + 6 = 36769 = 83 * 443. a(28) = 4*100^2 - 9*100 + 6 = 39106 = 2 * 19553. a(27) and a(28) are horizontally adjacent in the prime spiral, hence part of a clump and not isolated semiprimes as in A113688. a(45) = 4*157^2 - 9*157 + 6 = 97189 = 17 * 5717 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 [2..150] | IsSemiprime(s) where s is 4*n^2 - 9*n + 6]; // Vincenzo Librandi, Sep 22 2012 -
Mathematica
Select[Table[4 n^2 - 9 n + 6, {n, 140}], PrimeOmega[#] == 2 &] (* Vincenzo Librandi, Sep 22 2012 *)
Comments