OFFSET
0,11
MATHEMATICA
Table[Floor[n!/4^n], {n, 0, 40}] (* Harvey P. Dale, Jun 07 2014 *)
PROG
(Python)
import math
for n in range(99): print str(math.factorial(n)/(4**n))+', ',
CROSSREFS
KEYWORD
nonn,less
AUTHOR
Alex Ratushnyak, Oct 27 2013
STATUS
approved