login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A230319 Least positive k such that k! > k^n. 3
2, 3, 4, 6, 7, 8, 10, 11, 12, 14, 15, 16, 18, 19, 20, 22, 23, 24, 25, 27, 28, 29, 31, 32, 33, 34, 36, 37, 38, 39, 41, 42, 43, 44, 46, 47, 48, 49, 51, 52, 53, 54, 55, 57, 58, 59, 60, 62, 63, 64, 65, 67, 68, 69, 70, 71, 73, 74, 75, 76, 78, 79, 80, 81, 82, 84, 85, 86, 87, 88 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
Numbers that are not in the sequence: 0, 1, 5, 9, 13, 17, 21, 26, 30, 35, 40, 45, 50, 56, 61, 66, 72, 77, 83, 89, 95, 100, 106, 112, 118, 124, 130, 137, 143, 149, 155, 161, 168, ...
It appears that a(n) = A277675(n) + 2 for n >= 1. - Hugo Pfoertner, Jan 27 2021
Sánchez Garza and Treviño proved that the difference between any two consecutive elements is 1 or 2 and that the counting function up to x is x+x/log x + o(x/log x). - Enrique Treviño, Jan 30 2021
LINKS
M. Sánchez Garza and E. Treviño, On a sequence related to the factoradic representation of an integer, Journal of Integer Sequences Vol. 24 (2021), Article 21.8.5.
EXAMPLE
Least k>0 such that k! > k^3 is k=6.
For k=5: 5! = 120 < 125 = 5^3.
For k=6: 6! = 720 > 216 = 6^3.
So a(3) = 6.
MATHEMATICA
Table[k = 1; While[k^n >= k!, k++]; k, {n, 0, 100}] (* T. D. Noe, Oct 18 2013 *)
PROG
(Python)
import math
for n in range(333):
for k in range(1, 100000):
if math.factorial(k) > k**n:
print str(k)+', ',
break
(PARI) a(n) = my(k=1); while (k^n >= k!, k++); k; \\ Michel Marcus, Jan 27 2021
CROSSREFS
Sequence in context: A187572 A184478 A188188 * A319371 A004772 A029597
KEYWORD
nonn
AUTHOR
Alex Ratushnyak, Oct 15 2013
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 20:33 EDT 2024. Contains 371916 sequences. (Running on oeis4.)