login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
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 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
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

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 27 12:04 EDT 2024. Contains 372019 sequences. (Running on oeis4.)