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!)
A272777 In the interval [prime(n), 2*prime(n)], the greatest k with the maximal number of divisors. 2
4, 6, 10, 12, 20, 24, 30, 36, 36, 48, 60, 72, 72, 84, 90, 96, 108, 120, 120, 120, 120, 120, 120, 168, 180, 180, 180, 180, 180, 180, 240, 240, 240, 240, 240, 240, 240, 240, 240, 336, 336, 360, 360, 360, 360, 360, 420, 420, 420, 420 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The different values of the sequence are union of highly composite numbers (A002182, n>=3) and the numbers {10, 20, 30, 72, 84, 90, 96, 108, 168, 336, 420,...}.
LINKS
EXAMPLE
Let n=5, prime(n)=11. In interval [11,22] we have 3 numbers 12,18 and 20 with the maximal number of divisors in this interval(6). Since 20 is the most of them, then a(5)=20.
MATHEMATICA
Table[First@ MaximalBy[Reverse@ Range[Prime@ n, 2 Prime@ n], DivisorSigma[0, #] &], {n, 50}] (* Michael De Vlieger, May 09 2016, Version 10 *)
PROG
(PARI) a(n) = {my(nb = 2*prime(n) - prime(n) + 1, vd = vector(nb, i, numdiv(prime(n)+i-1)), vmax = vecmax(vd), k = nb); while (vd[k] != vmax, k--); k+prime(n)-1; } \\ Michel Marcus, May 07 2016
CROSSREFS
Sequence in context: A310580 A353966 A073161 * A310581 A310582 A177929
KEYWORD
nonn
AUTHOR
Vladimir Shevelev, May 06 2016
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 April 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)