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!)
A136597 Column 3 of triangle A136595. 4
1, -6, 85, -1350, 26341, -603246, 15887845, -473148150, 15723174181, -576826897086, 23157022930405, -1009818279438150, 47533643556874021, -2402218856253008526, 129730266330534913765, -7455932648513351731350, 454377365410347843373861 (list; graph; refs; listen; history; text; internal format)
OFFSET
3,2
LINKS
FORMULA
a(n) = Sum_{i=0..n-1} (-1)^i*(3+i)!*Stirling2(n,3+i)*Catalan(3,i)/3!, where Stirling2(n,k) = A008277(n,k), Catalan(k,i) = C(2*i+k,i)*k/(2*i+k) = coefficient of x^i in C(x)^k with C(x) = (1-sqrt(1-4x))/(2x).
PROG
(PARI) a(n)=n!/2!* sum(i=0, n-1, (-1)^i*polcoeff(((exp(x+x*O(x^n))-1)^(3+i)), n)*binomial(2*i+3, i)/(2*i+3))
(PARI) /* Define Stirling2: */ {Stirling2(n, k)=n!*polcoeff(((exp(x+x*O(x^n))-1)^k)/k!, n)} /* Define Catalan(m, n) = [x^n] C(x)^m: */ {Catalan(m, n)=binomial(2*n+m, n)*m/(2*n+m)} /* Define this sequence: */ {a(n)=sum(i=0, n-1, (-1)^i*(3+i)!*Stirling2(n, 3+i)*Catalan(3, i)/3!)}
CROSSREFS
Sequence in context: A167252 A290011 A164266 * A064329 A187740 A332407
KEYWORD
sign
AUTHOR
Paul D. Hanna, Jan 10 2008
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 25 06:41 EDT 2024. Contains 371964 sequences. (Running on oeis4.)