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!)
A155163 Triangle T(n,k): the coefficient of [x^k] of the series -(x-1)^(2*n+1) *Sum_{j>=0} (j+1)^n *binomial(j,n) * x^(j-n); columns 0<=k<n. 3
2, 9, 3, 64, 52, 4, 625, 855, 195, 5, 7776, 15306, 6546, 606, 6, 117649, 305571, 201866, 38486, 1701, 7, 2097152, 6806472, 6244680, 1950320, 194160, 4488, 8, 43046721, 168205743, 200503701, 90665595, 15597315, 887949, 11367, 9 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Row sums are A001813: 2, 12, 120, 1680, 30240, 665280, 17297280, 518918400.
LINKS
Michael Z. Spivey and Laura L. Steil, The k-Binomial Transforms and the Hankel Transform, Journal of Integer Sequences, Vol. 9 (2006), Article 06.1.1.
FORMULA
T(n,m) = Sum_{k=1..n} k!*(-1)^(n+m+k+1)*Stirling2(n,k)*C(n-k,m-1)*C(n+k,k). - Vladimir Kruchinin, Jan 27 2018
E.g.f. A(x,y) = E(A(x,y),y), where E(x,y)=(1-y)/(exp(x*(y-1))-y) - e.g.f. Eulerian numbers (A173018). - Vladimir Kruchinin, Aug 31 2018
EXAMPLE
[n\k][ 0 1 2 3 4 5 6 7]
[1] 2;
[2] 9, 3;
[3] 64, 52, 4;
[4] 625, 855, 195, 5;
[5] 7776, 15306, 6546, 606, 6;
[6] 117649, 305571, 201866, 38486, 1701, 7;
[7] 2097152, 6806472, 6244680, 1950320, 194160, 4488, 8;
[8] 43046721, 168205743, 200503701, 90665595, 15597315, 887949, 11367, 9;
MAPLE
A155163 := proc(n, k)
-(x-1)^(2*n+1)*add(x^(j-n)*(j+1)^n*binomial(j, n), j=0..n+10) ;
coeftayl(%, x=0, k) ;
end proc: # R. J. Mathar, Feb 13 2013
MATHEMATICA
Clear[p, x, n, m]; p[x_, n_] = -((x - 1)^(2*n + 1)/x^n)*Sum[( k + 1)^n*Binomial[k, n]*x^k, {k, 0, Infinity}];
Table[FullSimplify[ExpandAll[p[x, n]]], {n, 0, 10}];
Table[CoefficientList[FullSimplify[ExpandAll[p[x, n]]], x], {n, 0, 10}];
Flatten[%]
PROG
(Maxima)
T(n, m):=sum(k!*(-1)^(n+m+k+1)*stirling2(n, k)*binomial(n-k, m-1)*binomial(n+k, k), k, 1, n); /* Vladimir Kruchinin, Jan 27 2018 */
(GAP) T := Flat(List([1..50], n->List([1..n], m->Sum([1..n], k->Factorial(k) * (-1)^(n+m+k+1) * Stirling2(n, k) * Binomial(n-k, m-1) * Binomial(n+k, k))))); # Muniru A Asiru, Jan 27 2018
CROSSREFS
Cf. A202017.
Sequence in context: A162615 A275716 A295197 * A309929 A339799 A161934
KEYWORD
nonn,tabl
AUTHOR
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 19 21:09 EDT 2024. Contains 371798 sequences. (Running on oeis4.)