Advertisement
jaffrey98

binomial max as a function of power of n

Aug 1st, 2021
1,327
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.14 KB | None | 0 0
  1. from math import log
  2. #log(6435,15)
  3. #3.2383103963364226
  4. from math import comb as c
  5. for n in range(50,100): print(n,c(n,n//2),log(c(n,n//2),n))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement