A028270 Central elements in 3-Pascal triangle A028262 (by row).
1, 3, 8, 26, 90, 322, 1176, 4356, 16302, 61490, 233376, 890188, 3409588, 13104756, 50517200, 195234120, 756197910, 2934686610, 11408741520, 44420399100, 173191792620, 676104403260, 2642356838160, 10337529691320, 40481034410700
Offset: 0
Programs
-
Maple
seq(binomial(2*n,n)+binomial(2*n-2,n-1),n=0..24); seq(2*binomial(2*n-1,n-1)+binomial(2*n-2,n-1),n=1..24);
Formula
G.f.: (x+1)/sqrt(1-4*x). - Vladeta Jovovic, Jan 08 2004
a(n) = 2binomial(2n-1, n-1)+binomial(2n-2, n-1). - Emeric Deutsch, Apr 20 2004
a(n) = (n+1)*C(n) + n*C(n-1), C = Catalan number (A000108). - Gary W. Adamson, Dec 28 2007
G.f.: G(0) where G(k)= 1 + x/(1 - (4*k+2)/((4*k+2) + (k+1)/G(k+1))); (continued fraction, 3rd kind, 3-step). - Sergei N. Gladkovskii, Jul 24 2012
D-finite with recurrence n*a(n) -3*n*a(n-1) +2*(-2*n+5)*a(n-2)=0. - R. J. Mathar, May 01 2024
Extensions
More terms from James Sellers
Comments