[go: up one dir, main page]

login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A048275
a(n) = maximal value for number of divisors of C(n,k) for k=0..n.
6
1, 2, 2, 4, 4, 6, 4, 8, 12, 18, 16, 24, 24, 32, 24, 48, 32, 60, 48, 80, 96, 128, 64, 160, 192, 192, 288, 480, 384, 480, 192, 576, 768, 768, 1024, 1536, 1152, 1536, 1536, 2304, 1536, 2880, 2304, 2560, 3072, 3840, 2304, 3456, 3840, 5184, 6144, 9216, 5120
OFFSET
1,2
LINKS
EXAMPLE
If n=20, then the number of divisors of C(20,k) is one of {1,6,8,16,24,40,48,64,80}, so a(20) = 80.
MATHEMATICA
Table[Max@ Map[DivisorSigma[0, #] &, Binomial[n, Range[0, n]]], {n, 53}] (* Michael De Vlieger, Mar 05 2017 *)
PROG
(PARI) a(n) = vecmax(vector(n+1, k, numdiv(binomial(n, k-1)))); \\ Michel Marcus, Mar 05 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved