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!)
A340159 a(n) is the smallest number m such that numbers m, m + 1, m + 2, ..., m + n - 1 have k, 2*k, 3*k, ..., n*k divisors respectively. 5
1, 1, 61, 421, 211082, 11238341, 16788951482, 41126483642 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
a(n) is the smallest number m such that tau(m) = tau(m + 1)/2 = tau(m + 2)/3 = tau(m + 3)/4 = ... = tau(m + n - 1)/n, where tau(k) = the number of divisors of k (A000005).
Corresponding values of tau(a(n)): 1, 1, 2, 2, 4, 4, 4, ...
a(8) <= 41126483642. - David A. Corneth, Dec 31 2020
Any subsequent terms are > 10^11. - Lucas A. Brown, Mar 18 2024
LINKS
Lucas A. Brown, Python program.
EXAMPLE
a(3) = 61 because 61, 62 and 63 have 2, 4, and 6 divisors respectively and there is no smaller number having this property.
PROG
(PARI) isok(m, n) = {my(k=numdiv(m)); for (i=1, n-1, if (numdiv(m+i) != (i+1)*k, return (0)); ); return(1); }
a(n) = my(m=1); while(!isok(m, n), m++); m; \\ Michel Marcus, Dec 30 2020
(Python) # see LINKS
CROSSREFS
Cf. A294528 for similar sequence with primes.
Sequence in context: A305019 A316683 A264845 * A142034 A338102 A167445
KEYWORD
nonn,more,hard
AUTHOR
Jaroslav Krizek, Dec 29 2020
EXTENSIONS
a(7) from Jinyuan Wang, Dec 31 2020
a(8) from Lucas A. Brown, Mar 18 2024
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 00:47 EDT 2024. Contains 372528 sequences. (Running on oeis4.)