login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A088346 Smallest integer k for which exp(x) > x^n,  for all x>=k, n>=3. 2
5, 9, 13, 17, 22, 27, 31, 36, 41, 46, 52, 57, 62, 68, 73, 79, 85, 90, 96, 102, 108, 114, 120, 126, 132, 138, 145, 151, 157, 164, 170, 176, 183, 189, 196, 202, 209, 215, 222, 229, 235, 242, 249, 255, 262, 269, 276, 283, 289, 296, 303, 310, 317, 324, 331, 338, 345, 352 (list; graph; refs; listen; history; text; internal format)
OFFSET

3,1

COMMENTS

n=3 is the starting index since exp(x) > x^n for all x>=0 when n=1,2.

This function also cancels out a different set of numbers from the factorial than the primes using the asymptotic behavior of prime(n) and pi(n).

LINKS

Table of n, a(n) for n=3..60.

MATHEMATICA

a[n_] := Ceiling[E^-ProductLog[-1, -1/n]]; Table[a[n], {n, 3, 60}]

(* Also, the following code is from another definition of the *)

(* same sequence. *)

(* asymptotic prime like product function*) p[n_]=n!/(2*Product[Floor[i*Log[i]], {i, 2, Floor[n/Log[n]]}])

a0=Table[Floor[p[n]/p[n-1]], {n, 3, 500}];

(* composite like distribution*) Delete[Union[a0], 1];

(* pick of prime like numbers *) c=Table[If[a0[[n]]==1, n+2, 0], {n, 1, digits-3}];

d=Delete[Union[c], 1]

CROSSREFS

Cf. A190951 (Closest integer to the largest real x such that exp(x) = x^n)

Cf. A190952 (Largest integer k for which exp(k) < k^n)

Sequence in context: A004958 A190887 A184479 * A098109 A187573 A057653

Adjacent sequences:  A088343 A088344 A088345 * A088347 A088348 A088349

KEYWORD

nonn

AUTHOR

Roger L. Bagula, Nov 07 2003

EXTENSIONS

Partially edited Charles R Greathouse IV, Nov 02 2009

Provided new name, and added 2 initial terms, by Shel Kaphan, May 20 2011

Added Mathematica function, by Shel Kaphan, May 23 2011

Reverted to starting at n=3, improved Mathematica code, by Shel Kaphan, May 24 2011

STATUS

approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified May 22 04:18 EDT 2013. Contains 225511 sequences.