A062138
Coefficient triangle of generalized Laguerre polynomials n!*L(n,5,x)(rising powers of x).
Original entry on oeis.org
1, 6, -1, 42, -14, 1, 336, -168, 24, -1, 3024, -2016, 432, -36, 1, 30240, -25200, 7200, -900, 50, -1, 332640, -332640, 118800, -19800, 1650, -66, 1, 3991680, -4656960, 1995840, -415800, 46200, -2772, 84, -1, 51891840, -69189120
Offset: 0
Triangle begins:
{1};
{6, -1};
{42, -14, 1};
{336, -168, 24, -1};
...
2!*L(2, 5, x) = 42-14*x+x^2.
- A. Messiah, Quantum mechanics, vol. 1, p. 419, eq.(XI.18a), North Holland, 1969.
-
Flatten[Table[((-1)^m)*n!*Binomial[n+5,n-m]/m!,{n,0,8},{m,0,n}]] (* Indranil Ghosh, Feb 24 2017 *)
-
tabl(nn) = {for (n=0, nn, for (m=0, n, print1(((-1)^m)*n!*binomial(n+5, n-m)/m!, ", "); ); print(); ); } \\ Indranil Ghosh, Feb 24 2017
-
row(n) = Vecrev(n!*pollaguerre(n, 5)); \\ Michel Marcus, Feb 06 2021
-
import math
f=math.factorial
def C(n, r):return f(n)//f(r)//f(n-r)
i=-1
for n in range(26):
for m in range(n+1):
i += 1
print(str(i)+" "+str(((-1)**m)*f(n)*C(n+5, n-m)//f(m))) # Indranil Ghosh, Feb 24 2017
A143498
Triangle of unsigned 3-Lah numbers.
Original entry on oeis.org
1, 6, 1, 42, 14, 1, 336, 168, 24, 1, 3024, 2016, 432, 36, 1, 30240, 25200, 7200, 900, 50, 1, 332640, 332640, 118800, 19800, 1650, 66, 1, 3991680, 4656960, 1995840, 415800, 46200, 2772, 84, 1, 51891840, 69189120, 34594560, 8648640, 1201200, 96096, 4368
Offset: 3
Triangle begins
n\k|......3......4......5......6......7......8
==============================================
3..|......1
4..|......6......1
5..|.....42.....14......1
6..|....336....168.....24......1
7..|...3024...2016....432.....36......1
8..|..30240..25200...7200....900.....50......1
...
T(4,3) = 6. The partitions of {1,2,3,4} into 3 ordered lists, such that the elements 1, 2 and 3 lie in different lists, are: {1}{2}{3,4} and {1}{2}{4,3}, {1}{3}{2,4} and {1}{3}{4,2}, {2}{3}{1,4} and {2}{3}{4,1}.
- Erich Neuwirth, Recursively defined combinatorial functions: Extending Galton's board, Discrete Math. 239 No. 1-3, 33-51 (2001).
- G. Nyul, G. Rácz, The r-Lah numbers, Discrete Mathematics, 338 (2015), 1660-1666.
- Michael J. Schlosser and Meesue Yoo, Elliptic Rook and File Numbers, Electronic Journal of Combinatorics, 24(1) (2017), #P1.31.
- M. Shattuck, Generalized r-Lah numbers, arXiv:1412.8721 [math.CO], 2014.
Cf.
A001725 (column 3),
A007318,
A008275,
A008277,
A062138,
A062148 -
A062152 (column 4 to column 8),
A062191 (alt. row sums),
A062192 (row sums),
A105278 (unsigned Lah numbers),
A143492,
A143495,
A143497,
A143499.
-
/* As triangle */ [[Factorial(n-3)/Factorial(k-3)*Binomial(n+2, k+2): k in [3..n]]: n in [3.. 15]]; // Vincenzo Librandi, Nov 27 2018
-
with combinat: T := (n, k) -> (n-3)!/(k-3)!*binomial(n+2,k+2): for n from 3 to 12 do seq(T(n, k), k = 3..n) end do;
-
T[n_, k_] := (n-3)!/(k-3)!*Binomial[n+2, k+2]; Table[T[n, k], {n, 3, 10}, {k, 3, n}] // Flatten (* Amiram Eldar, Nov 26 2018 *)
Showing 1-2 of 2 results.
Comments