login
A320065
a(n) is the smallest integer i such that binomial(2i,i) > n.
0
1, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5
OFFSET
1,2
COMMENTS
The formula can be proved by using Stirling's formula to estimate the central binomial coefficient binomial(2i,i).
FORMULA
a(n) = (log n)/(log 4) + (log log n)/(log 16) + O(1).
MATHEMATICA
Array[Block[{i = 1}, While[Binomial[2 i, i] <= #, i++]; i] &, 105] (* Michael De Vlieger, Oct 22 2018 *)
CROSSREFS
Cf. A000984.
Sequence in context: A235224 A092139 A084558 * A163291 A156875 A066339
KEYWORD
nonn
AUTHOR
David Lewis, Oct 22 2018
STATUS
approved