OFFSET
1,1
LINKS
Vaclav Kotesovec, Table of n, a(n) for n = 1..44084
EXAMPLE
For n=9, the central binomial coefficient (C(9,4) = 126) is divisible by C(9,0), C(9,1), C(9,4), C(9,5), C(9,8), and C(9,9); certain primes are missing, certain composites are here.
MATHEMATICA
Position[Table[Count[Binomial[n, Floor[n/2]]/Binomial[n, Range[0, n]], _?IntegerQ], {n, 150}], 6]//Flatten (* Harvey P. Dale, Mar 05 2023 *)
PROG
(PARI) isok(n) = my(b=binomial(n, n\2)); sum(i=0, n, (b % binomial(n, i)) == 0) == 6; \\ Michel Marcus, Jul 29 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
Labos Elemer, Mar 12 2003
STATUS
approved