OFFSET
1,1
COMMENTS
e is the only positive real k for which k^n is greater than or equal to n^k for all positive real n.
LINKS
Harry J. Smith, Table of n, a(n) for n = 1..200
EXAMPLE
a(1) = floor(e^1 / 1^e) = floor(e) = 2.
MATHEMATICA
Array[Floor[E^#/#^E] &, 33] (* Michael De Vlieger, Jul 01 2018 *)
PROG
(PARI) { default(realprecision, 100); e=exp(1); for (n=1, 200, write("b062277.txt", n, " ", floor(e^n / n^e)) ) } \\ Harry J. Smith, Aug 03 2009
CROSSREFS
KEYWORD
nonn
AUTHOR
Henry Bottomley, Jul 02 2001
STATUS
approved