OFFSET
0,5
LINKS
T. D. Noe, Table of n, a(n) for n = 0..1000
EXAMPLE
If n = 51 and k runs from 0 to 51, then a maximum of 11 distinct prime factors arise, for k = 20, 21, 22, 23, 28, 29, 30, 31.
MATHEMATICA
Table[Max[Table[b = Binomial[n, k]; If[b == 1, 0, Length[FactorInteger[b]]], {k, 0, n}]], {n, 0, 100}] (* T. D. Noe, Apr 03 2012 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved