OFFSET
0,8
MATHEMATICA
Table[Floor[n!/3^n], {n, 0, 30}] (* Harvey P. Dale, May 24 2018 *)
PROG
(Python)
import math
for n in range(99): print str(math.factorial(n)/(3**n))+', ',
CROSSREFS
KEYWORD
nonn,less
AUTHOR
Alex Ratushnyak, Oct 27 2013
STATUS
approved