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

A112100
Denominator of Sum_{i=1..n} 1/(i*C(2*i,i)).
3
1, 2, 12, 5, 280, 2520, 220, 120120, 144144, 1361360, 25865840, 77597520, 22881320, 371821450, 11473347600, 9242418900, 6876359661600, 20629078984800, 281488407200, 118731810156960, 254425307479200, 8113340360725600, 36090376087365600, 9419588158802421600
OFFSET
0,2
FORMULA
Sum_{i >= 1} 1/(i*C(2*i, i)) = Pi*sqrt(3)/9.
EXAMPLE
0, 1/2, 7/12, 3/5, 169/280, 1523/2520, 133/220, 72623/120120, 87149/144144, .... -> Pi*sqrt(3)/9.
MATHEMATICA
Table[Sum[1/(i*Binomial[2i, i]), {i, n}], {n, 0, 30}]//Denominator (* Harvey P. Dale, May 11 2019 *)
PROG
(PARI) a(n) = denominator(sum(i=1, n, 1/(i*binomial(2*i, i)))); \\ Michel Marcus, Mar 10 2016
CROSSREFS
Cf. A112099.
Sequence in context: A286480 A286256 A239111 * A079080 A228454 A278255
KEYWORD
nonn,frac
AUTHOR
N. J. A. Sloane, Nov 30 2005
EXTENSIONS
Definition corrected by Wolfdieter Lang, Oct 07 2008
STATUS
approved