A023816 Sum of exponents in prime-power factorization of C(2n,n).
0, 1, 2, 3, 3, 5, 5, 6, 6, 6, 6, 8, 7, 9, 11, 11, 9, 11, 11, 12, 12, 12, 12, 15, 13, 14, 15, 14, 14, 16, 15, 16, 15, 16, 16, 17, 15, 16, 18, 19, 17, 21, 20, 22, 22, 21, 22, 24, 22, 22, 23, 23, 22, 25, 23, 23, 22, 22, 23, 26, 25, 27, 28, 29, 25, 26, 25, 27, 29, 29, 28, 30, 28, 30, 32, 31, 30, 32, 32, 33
Offset: 0
Keywords
Links
- Ivan Neretin, Table of n, a(n) for n = 0..10000
Programs
-
Maple
with(numtheory):a:=proc(n) if n=0 then 0 else bigomega(binomial(2*n,n)) fi end: seq(a(n), n=0..79); # Zerinvary Lajos, Apr 11 2008
-
Mathematica
Join[{0},Table[Total[FactorInteger[Binomial[2 n, n]][[All, 2]]], {n, 79}]] (* Ivan Neretin, Oct 26 2017 *)
-
PARI
a(n) = bigomega(binomial(2*n, n)); \\ Amiram Eldar, Jun 11 2025
Formula
From Amiram Eldar, Jun 11 2025: (Start)
Extensions
Offset changed to 0 and a(0) prepended by Amiram Eldar, Jun 11 2025