OFFSET
1,1
COMMENTS
Nontrivial here means binomial(r,s) with 2 <= s <= r-2 (or the sequence would be uninteresting).
Blokhuis et al. show that the values given are complete up to 10^30, and conjecture that there are no more.
LINKS
Aart Blokhuis, Andries Brouwer, Benne de Weger, Binomial collisions and near collisions, INTEGERS, Volume 17, Article A64, 2017 (also available as arXiv:1707.06893 [math.NT]).
EXAMPLE
binomial(6,3)=20 and binomial(7,2)=binomial(7,5)=21 are the smallest adjacent pair, so a(1)=21.
MATHEMATICA
nmax = 1000; t = Table[Binomial[n, k], {n, 4, nmax}, {k, 2, Floor[n/2]}] // Flatten // Sort // DeleteDuplicates; Select[Split[t, #2 == #1+1&], Length[#] > 1&][[All, 2]] (* Jean-François Alcover, Feb 20 2018 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Christopher E. Thompson, Jan 19 2018
STATUS
approved