login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A214047
Least m>0 such that n! <= (3/2)^m.
2
1, 2, 5, 8, 12, 17, 22, 27, 32, 38, 44, 50, 56, 63, 69, 76, 83, 90, 98, 105, 112, 120, 128, 136, 144, 152, 160, 168, 176, 185, 193, 202, 210, 219, 228, 237, 245, 254, 263, 273, 282, 291, 300, 310, 319, 328, 338, 347, 357, 367
OFFSET
1,2
LINKS
EXAMPLE
a(6) = 17 because (3/2)^16 < 6! <= (3/2)^17.
MATHEMATICA
Table[m=1; While[n!>(3/2)^m, m++]; m, {n, 1, 100}]
Join[{1}, With[{c=Log[3/2]}, Table[Ceiling[Log[n!]/c], {n, 2, 50}]]] (* Harvey P. Dale, May 15 2013 *)
CROSSREFS
Sequence in context: A376356 A036789 A330188 * A241566 A002960 A022942
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Jul 18 2012
STATUS
approved