OFFSET
0,2
COMMENTS
Create a triangle with the first column being the n-th row of Pascal's triangle from A007318, T(r,0) = binomial(n,r). The other terms T(r,c) are defined as T(r,c-1) + T(r-1,c-1). The sum of all terms for each triangle having n+1 rows is a(n). Example for n=3: the triangle has four rows 1; 3,4; 3,6,10; 1,4,10,20 ; sum of all 10 elements in the triangle is 62=a(3). - J. M. Bergot, Jan 17 2013
FORMULA
Conjecture: (n+1)*a(n) -2*(4*n+1)*a(n-1) +4*(5*n-3)*a(n-2) +8*(-2*n+3)*a(n-3)=0. - R. J. Mathar, Jan 25 2013
MAPLE
seq(2*binomial(2*n+1, n+1)-2^n, n=0..25);
MATHEMATICA
Table[2Binomial[2n+1, n+1]-2^n, {n, 0, 30}] (* Harvey P. Dale, Aug 30 2021 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Klaus Strassburger (strass(AT)ddfi.uni-duesseldorf.de), Jul 23 2003
STATUS
approved