cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A214047 Least m>0 such that n! <= (3/2)^m.

Original entry on oeis.org

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

Views

Author

Clark Kimberling, Jul 18 2012

Keywords

Examples

			a(6) = 17 because (3/2)^16 < 6! <= (3/2)^17.
		

Crossrefs

Programs

  • 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 *)