The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A330275 Integers n such that lcm(1, ..., n) > exp(n). 1
19, 31, 32, 43, 47, 49, 53, 61, 73, 74, 75, 79, 83, 84, 89, 103, 107, 109, 110, 111, 112, 113, 114, 115, 116, 117, 131, 139, 140, 141, 151, 169, 173, 174, 179, 181, 182, 183, 184, 185, 193, 194, 195, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 211, 233 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
It is well known that lcm(1, ..., n) is approximately exp(n). For most numbers < 100 it is less than exp(n).
LINKS
J. Barkley Rosser and Lowell Schoenfeld, Approximate formulas for some functions of prime numbers, Illinois Journal of Mathematics, Vol. 6, No. 1 (1962), pp. 64-94.
MAPLE
select(n -> is(ilcm($1..n) > exp(n)), [$1..300]); # Robert Israel, Dec 08 2019
MATHEMATICA
Select[Range[233], LCM @@ Range[#] > Exp[#] &] (* Amiram Eldar, Dec 08 2019 *)
PROG
(PARI) c=1; for (n=1, 233, c=lcm(c, n); if (c>exp(n), print1 (n", "))) \\ Rémy Sigrist, Dec 08 2019
(Magma) [k:k in [1..250]|Lcm([1..k]) gt Exp(k)]; // Marius A. Burtea, Dec 16 2019
CROSSREFS
Cf. A003418.
Sequence in context: A298763 A309962 A316678 * A038672 A250216 A125148
KEYWORD
nonn
AUTHOR
Wendy Appleby, Dec 08 2019
EXTENSIONS
More terms from Rémy Sigrist, Dec 08 2019
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 May 14 12:38 EDT 2024. Contains 372533 sequences. (Running on oeis4.)