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

A132428
Central terms of triangle A132427.
1
1, 1, 3, 10, 43, 216, 1241, 7988, 56763, 440254, 3693728, 33281359, 320112326, 3270177860, 35329070470, 402128329243, 4806784533967, 60166803598106, 786622663286330, 10717555856584617, 151864784070048105
OFFSET
0,3
FORMULA
Binomial transform equals A125273.
a(n)=sum(k=1..n, sum(i=k..n, binomial(i-1,k-1)*binomial(i,n-i))*a(k-1)), n>0,a(0)=1. [Vladimir Kruchinin, May 02 2012]
PROG
(PARI) {a(n)=local(G=1+x+x*O(x^n)); for(i=0, n, G=1+x*subst(G, x, x/(1-x)^2)/(1-x)); polcoeff(subst((G-1)/x, x, x/(1+x))/(1+x), n)}
(Maxima) a(n):=if n=0 then 1 else sum(sum(binomial(i-1, k-1)*binomial(i, n-i), i, k, n)*a(k-1), k, 1, n); /* Vladimir Kruchinin, May 02 2012 */
CROSSREFS
Sequence in context: A205487 A323667 A030935 * A030890 A030833 A318372
KEYWORD
nonn,tabl
AUTHOR
Paul D. Hanna, Aug 21 2007
STATUS
approved