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!)
A325480 a(n) is the largest integer m such that the product of n consecutive integers starting at m is divisible by at most n primes. 0
16, 24, 24, 45, 48, 49, 120, 120, 125, 189, 240, 240, 350, 350, 350, 350, 374, 494, 494, 714, 714, 714, 714, 825, 832, 1078, 1078, 1078, 1078, 1425, 1440, 1440, 1856, 2175, 2175, 2175, 2175, 2175, 2175, 2175, 2870, 2870, 2870, 2871, 2880, 2880, 2880, 3219 (list; graph; refs; listen; history; text; internal format)
OFFSET
3,1
COMMENTS
Each term is only conjectured and has been verified up to 10^6.
Note a(2) is undefined if there are infinitely many Mersenne primes.
LINKS
EXAMPLE
For example, a(3) = 16 because 16 * 17 * 18 = 2^5 * 3^2 * 17 admits only three prime divisors (2, 3, and 17) and appears to be the largest product of three consecutive integers with the property.
PROG
(SageMath)
for r in range(3, 100):
history = []
M = 0
for n in range(1, 100000):
primes = {p for p, _ in factor(n)}
history.append(primes)
history = history[-r:]
total = set()
for s in history: total |= s
# Skip if too many primes.
if len(total) > r: continue
if n > M: M = n
print(r, M-r+1)
CROSSREFS
Sequence in context: A114405 A098351 A206267 * A205193 A052058 A105732
KEYWORD
nonn
AUTHOR
Onno M. Cain, Sep 06 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 12 12:33 EDT 2024. Contains 372480 sequences. (Running on oeis4.)