OFFSET
1,1
COMMENTS
Recall that the nontrivial binomial coefficients are C(n,k), 2 <= k <= n-2.
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
EXAMPLE
a(1) = 6, since 6 is the lowest nontrivial binomial coefficient.
a(2) = 10, since 10 is the lowest nontrivial binomial coefficient except 6.
a(3) = 12 , since 6 is the lowest nontrivial binomial coefficient and 6+6 = 12 .
MAPLE
N:= 200: # to get all terms <= N
BC:= {}:
for k from 2 do
if binomial(k+2, k) > N then break fi;
for n from k+2 do
v:= binomial(n, k);
if v > N then break fi;
BC:= BC union {v};
od;
od:
A:= BC:
for i from 1 to nops(BC) do
A:= A union select(`<=`, map(`+`, BC[1..i], BC[i]), N)
od:
sort(convert(A, list)): # Robert Israel, Apr 27 2017
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Douglas Latimer, Mar 22 2012
STATUS
approved