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!)
A020738 Consider number of divisors of binomial(n, k), k=0..n; a(n) = multiplicity of maximal value. 3
2, 1, 2, 1, 2, 1, 4, 3, 4, 1, 4, 3, 2, 1, 2, 1, 6, 2, 6, 2, 6, 1, 8, 2, 2, 1, 4, 2, 2, 1, 10, 4, 2, 5, 2, 2, 2, 1, 2, 1, 6, 2, 2, 2, 4, 1, 2, 1, 2, 2, 6, 2, 4, 2, 2, 4, 2, 1, 10, 2, 2, 3, 4, 8, 2, 2, 2, 5, 2, 2, 2, 2, 2, 2, 2, 5, 2, 2, 6, 2, 2, 2, 12, 2, 2, 1, 2, 4, 4, 2, 2, 2, 2, 1, 2, 2, 2, 1, 4, 2, 4, 2 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
If n=23, the divisors for {binomial(23, k)} are {1, 2, 4, 8, 16, 16, 32, 32, 64, 64, 64, 64, 64, 64, 64, 64, 32, ...}. The maximum occurs 8 times, so a(23) = 8.
MAPLE
f:= proc(n) local L, k;
L:= [seq(numtheory:-tau(binomial(n, k)), k=0..n)];
numboccur(max(L), L)
end proc:
map(f, [$1..200]); # Robert Israel, Nov 17 2016
MATHEMATICA
a[ n_] := If[ n < 1, 0, Last @ Last @ Tally @ Array[ Length @ Divisors @ Binomial[n, #] &, n+1, 0]]; (* Michael Somos, Nov 17 2016 *)
CROSSREFS
Sequence in context: A029218 A100376 A336318 * A063279 A247051 A247050
KEYWORD
nonn
AUTHOR
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 16 00:39 EDT 2024. Contains 371696 sequences. (Running on oeis4.)