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

A176358
Partial sums of A002503.
0
5, 19, 46, 87, 131, 196, 272, 362, 471, 596, 735, 887, 1042, 1211, 1397, 1586, 1789, 1997, 2206, 2425, 2652, 2882, 3119, 3384, 3659, 3957, 4264, 4575, 4889, 5210, 5534, 5863, 6207, 6584, 6997, 7416, 7844, 8278, 8717, 9158, 9607, 10065, 10524, 10991
OFFSET
1,1
COMMENTS
Partial sums of numbers n such that binomial(2n,n) is divisible by (n+1)^2. The subsequence of primes in this partial sum begins: 5, 19, 131, 887, 1789, 1997, 3119, 3659, 4889, 6997. The subsequence of primes in this partial sum begins: 196.
FORMULA
a(n) = SUM[i=1..n] A002503(i).
EXAMPLE
a(23) = 5 + 14 + 27 + 41 + 44 + 65 + 76 + 90 + 109 + 125 + 139 + 152 + 155 + 169 + 186 + 189 + 203 + 208 + 209 + 219 + 227 + 230 + 237 = 3119 is prime.
MATHEMATICA
Accumulate[Select[Range[800], Divisible[Binomial[2#, #], (#+1)^2]&]] (* Harvey P. Dale, Apr 18 2011 *)
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Jonathan Vos Post, Apr 15 2010
EXTENSIONS
Corrected by Harvey P. Dale, Apr 18 2011.
STATUS
approved