A212791 Central binomial coefficient CB(n) purged of all primes exceeding (n+1)/2.
1, 1, 1, 2, 2, 4, 1, 2, 18, 36, 6, 12, 12, 24, 45, 90, 10, 20, 2, 4, 84, 168, 14, 28, 700, 1400, 2700, 5400, 360, 720, 45, 90, 2970, 5940, 11550, 23100, 23100, 46200, 90090, 180180, 8580, 17160, 780, 1560, 70200, 140400
Offset: 1
Keywords
Examples
CB(21) = binomial(21,10) = 21!/(10!11!) = 352716 is divisible by all primes in (11,21] to 1st power, i.e., by 13*17*19 = 4199. Hence a(21) = 352716/4199 = 84.
Links
- Stanislav Sykora, Table of n, a(n) for n = 1..1000
Programs
-
PARI
{lambda1(n) = result=binomial(n,floor((n+1)\2));forprime(p=1+floor((n+1)\2),n,result=result/p);}
Formula
a(n) = C(n, floor(n/2))/Product_{n/2 < prime p <= n} p.
Comments