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.

A214048 Least m>0 such that n! <= r^m, where r = (1+sqrt(5))/2, the golden ratio.

Original entry on oeis.org

1, 2, 4, 7, 10, 14, 18, 23, 27, 32, 37, 42, 47, 53, 58, 64, 70, 76, 82, 88, 95, 101, 108, 114, 121, 128, 135, 142, 149, 156, 163, 170, 177, 185, 192, 199, 207, 214, 222, 230, 237, 245, 253, 261, 269, 277, 285, 293, 301, 309
Offset: 1

Views

Author

Clark Kimberling, Jul 18 2012

Keywords

Comments

Also, the least m>0 such that n! < L(m), where L = A000032, the Lucas numbers.

Examples

			a(4) = 7 because r^6 < 4! <= 4^7.
		

Crossrefs

Programs

  • Mathematica
    Table[m=1; While[n!>GoldenRatio^m, m++]; m, {n,1,100}]