A010763 a(n) = binomial(2n+1, n+1) - 1.
0, 2, 9, 34, 125, 461, 1715, 6434, 24309, 92377, 352715, 1352077, 5200299, 20058299, 77558759, 300540194, 1166803109, 4537567649, 17672631899, 68923264409, 269128937219, 1052049481859, 4116715363799, 16123801841549, 63205303218875, 247959266474051
Offset: 0
Links
- Vincenzo Librandi, Table of n, a(n) for n = 0..1000
- Eric Weisstein's World of Mathematics, Wolstenholme's Theorem
- Jianqiang Zhao, Uniform Approach to Double Shuffle and Duality Relations of Various q-Analogs of Multiple Zeta Values via Rota-Baxter Algebras, arXiv preprint arXiv:1412.8044 [math.NT], 2014.
Programs
-
Magma
[Binomial(2*n-1,n-1)-1: n in [1..30]]; // Vincenzo Librandi, Mar 21 2013
-
Maple
A010763:=n->binomial(2*n+1, n+1) - 1: seq(A010763(n), n=0..30); # Wesley Ivan Hurt, Sep 05 2015
-
Mathematica
Table[Binomial[2n - 1, n - 1] - 1, {n, 20}] (* Alonso del Arte, Dec 13 2012 *) CoefficientList[Series[Exp[2*x]*(BesselI[0,2*x] + BesselI[1,2*x]) - Exp[x], {x, 0, 20}], x]*Table[n!, {n, 0, 20}] (* Stefano Spezia, Dec 02 2018 *)
-
PARI
a(n) = binomial(2*n+1, n+1) - 1; vector(30, n, a(n-1)) \\ Michel Marcus, Sep 05 2015
-
PARI
first(n) = x='x+O('x^n); Vec((1 - sqrt(1 - 4*x))/(2*x*sqrt(1 - 4*x)) - 1/(1 - x), -n) \\ Iain Fox, Dec 19 2017 (corrected by Iain Fox, Oct 24 2018)
Formula
a(n) = (n/(2n+2))*Sum_{k = 1..n+1} C(2n+2, k)/C(n+1, k). - Benoit Cloitre, Aug 20 2002
a(n) = Sum_{i = 1..n} C(n + i, n). - Benoit Cloitre, Oct 15 2002
a(n + 1) = C(2n - 1, n - 1) - 1. - Alonso del Arte, Dec 15 2012
From Ilya Gutkovskiy, Feb 07 2017: (Start)
O.g.f.: (1 - sqrt(1 - 4*x))/(2*x*sqrt(1 - 4*x)) - 1/(1 - x).
E.g.f.: exp(2*x)*(BesselI(0,2*x) + BesselI(1,2*x)) - exp(x). (End)
Comments