OFFSET
1,1
COMMENTS
From the formula, if we know k, we can estimate n as approximately 0.83 sqrt(k).
Open question: Does binomial(2*a(n) + 1, a(n) - n) = binomial(2*a(n), a(n)) for any n? An affirmative answer would settle whether there exists an odd term greater than 3 in A003016. - Danny Rorabaugh, Mar 16 2016
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..500
FORMULA
Round(0.3807 + 1.43869 n + 1.44276 n^2) is an exact fit for the first 50 terms.
As n -> infinity, we have a(n) = (n^2+n)/log(2) + o(n). - Robert Israel, Mar 16 2016
MAPLE
F:= proc(n) local Q, LQ, k, k0;
LQ:= -ln(GAMMA(k-n+1))-ln(GAMMA(k+1+n))-ln(k+1+n)+ln(2*k+1)+2*ln(GAMMA(k+1));
k0:= floor(fsolve(LQ, k=n..max(2*n^2, 9)));
if (2*k0+1)*binomial(k0, n) >= (n+1)*binomial(k0+1+n, n+1) then
while (2*k0-1)*binomial(k0-1, n) >= (n+1)*binomial(k0+n, n+1) do k0:= k0-1 od
else
while (2*k0+1)*binomial(k0, n) < (n+1)*binomial(k0+1+n, n+1) do k0:= k0+1 od;
fi;
k0;
end proc:
map(F, [$1..100]); # Robert Israel, Mar 16 2016
MATHEMATICA
k=1; Table[While[Binomial[2k+1, k-n] < Binomial[2k, k], k++ ]; k, {n, 50}]
PROG
(PARI) a(n, k=n+1)=while((2*k+1)*k!^2<(n+k+2)!*(k-n-1)!, k++); k \\ Charles R Greathouse IV, Sep 09 2013
CROSSREFS
KEYWORD
nonn
AUTHOR
T. D. Noe, Nov 23 2004
STATUS
approved