OFFSET
0,1
COMMENTS
Sequence is ordered by size of n not size of C(n,k). Link gives list of all values up to n=1352.
EXAMPLE
C(11,5)=462 is a member of the sequence because 461 and 463 are twin primes.
MATHEMATICA
Select[Flatten[Table[Binomial[n, k], {n, 200}, {k, 2, Floor[n/2]}]], AllTrue[ #+ {1, -1}, PrimeQ]&] (* The program uses the AllTrue function from Mathematica version 10 *) (* Harvey P. Dale, Dec 10 2015 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Joe DeMaio (jdemaio(AT)kennesaw.edu), Dec 06 1999
EXTENSIONS
More terms from Harvey P. Dale, Dec 10 2015
STATUS
approved