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.

A214448 Least m>0 such that m^4 >= n!.

Original entry on oeis.org

1, 2, 2, 3, 4, 6, 9, 15, 25, 44, 80, 148, 281, 544, 1070, 2139, 4343, 8946, 18676, 39495, 84545, 183102, 400981, 887517, 1984548, 4481308, 10215173, 23498233, 54529901, 127618907, 301130984, 716214216
Offset: 1

Views

Author

Clark Kimberling, Jul 18 2012

Keywords

Examples

			a(4)=3 because 3^2 < 4! <= 3^3.
		

Crossrefs

Cf. A214049.

Programs

  • Maple
    A214448 := proc(n)
            ceil(root[4](n!)) ;
    end proc: # R. J. Mathar, Jul 24 2012
  • Mathematica
    Table[Ceiling[n!^(1/4)], {n, 1, 40}]

Formula

a(n) = ceiling(n!^(1/4)).