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”).

A147304
a(n) = Sum_{k=1..prime(n)^2-1} binomial(2k,k).
2
28, 17576, 43308802158650, 8610524734277600186228691452, 121374542758943982922417964798154019940274699584207321286055873543631298, 8126392396649531937838689708830356413772063825711016912849229977138431439363305375418692100492504264
OFFSET
1,1
LINKS
MATHEMATICA
Table[Sum[Binomial[2k, k], {k, Prime[n]^2-1}], {n, 7}] (* Harvey P. Dale, Dec 26 2014 *)
PROG
(PARI) a(n) = sum(k=1, prime(n)^2-1, binomial(2*k, k)); \\ Michel Marcus, Jul 07 2018
CROSSREFS
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Apr 25 2009
STATUS
approved