OFFSET
1,4
COMMENTS
Sequence is not monotonic. E.g., a(44)=10, a(45)=9 and a(46)=10. The number of prime factors of n! is pi(n), but these numbers are lower.
Prime factors are counted without multiplicity. - Harvey P. Dale, May 20 2012
LINKS
T. D. Noe, Table of n, a(n) for n = 1..10000
EXAMPLE
a(25) = omega(binomial(25,12)) = omega(5200300) = 6 because the prime factors are 2, 5, 7, 17, 19, 23.
MATHEMATICA
Table[PrimeNu[Binomial[n, Floor[n/2]]], {n, 90}] (* Harvey P. Dale, May 20 2012 *)
PROG
(PARI) a(n)=omega(binomial(n, n\2)) \\ Charles R Greathouse IV, Apr 29 2015
CROSSREFS
KEYWORD
nonn,easy,nice
AUTHOR
STATUS
approved