A074181 Smallest power of n >= n!.
1, 2, 9, 64, 125, 1296, 16807, 262144, 531441, 10000000, 214358881, 5159780352, 10604499373, 289254654976, 8649755859375, 281474976710656, 582622237229761, 20822964865671168, 799006685782884121
Offset: 1
Links
- Danny Rorabaugh, Table of n, a(n) for n = 1..447
Crossrefs
Cf. A074182.
Programs
-
Mathematica
Join[{1},Table[n^Ceiling[Log[n,n!]],{n,2,20}]] (* Harvey P. Dale, Aug 10 2022 *)
-
PARI
a(n)=if(n>2,n^(logint(n!,n)+1),n) \\ Charles R Greathouse IV, Oct 11 2015
-
Sage
[1]+[n^ceil(log(factorial(n))/log(n)) for n in range(2,20)] # Danny Rorabaugh, Apr 14 2015
Formula
Extensions
More terms from Jason Earls, Sep 02 2002