A124000 Semiprimes in A006987(n), or semiprime binomial coefficients: C(n,k), 2 <= k <= n-2.
6, 10, 15, 21, 35, 55, 91, 253, 703, 1081, 1711, 1891, 2701, 3403, 5671, 12403, 13861, 15931, 18721, 25651, 34453, 38503, 49141, 60031, 64261, 73153, 79003, 88831, 104653, 108811, 114481, 126253, 146611, 158203, 171991, 188191, 218791, 226801
Offset: 1
Keywords
Examples
C(5,2) = 5!/(3!*2!) = 120/(6*2) = 10 is a semiprime (A001358), so 10 is in the sequence. - _Michael B. Porter_, Sep 17 2016
Links
- Robert G. Wilson v, Table of n, a(n) for n = 1..11521
Programs
-
Mathematica
s = {}; Do[b = Binomial[n, k]; If[PrimeOmega@ b == 2, AppendTo[s, b]; Print@ b], {n, 3, 10000}, {k, 2, n/2}]; s (* Robert G. Wilson v, Nov 03 2006; updated Sep 16 2016 *)
Formula
Extensions
More terms from Robert G. Wilson v, Nov 03 2006
Comments