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!)
A371076 Triangle read by rows: T(n, k) = 3^n*Sum_{j=0..k} (-1)^(k - j)*binomial(k, j) * Pochhammer(j/3, n). 3
1, 0, 1, 0, 4, 2, 0, 28, 24, 6, 0, 280, 320, 144, 24, 0, 3640, 5040, 3120, 960, 120, 0, 58240, 92960, 71280, 30720, 7200, 720, 0, 1106560, 1975680, 1775760, 960960, 319200, 60480, 5040, 0, 24344320, 47653760, 48545280, 31127040, 13104000, 3548160, 564480, 40320 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,5
LINKS
FORMULA
T(n, k) = k * T(n-1, k-1) + (3*n - 3 + k) * T(n-1, k) for 0 < k < n with initial values T(n, 0) = 0 for n > 0 and T(n, n) = n! for n >= 0. - Werner Schulte, Mar 13 2024
EXAMPLE
Triangle starts:
[0] 1;
[1] 0, 1;
[2] 0, 4, 2;
[3] 0, 28, 24, 6;
[4] 0, 280, 320, 144, 24;
[5] 0, 3640, 5040, 3120, 960, 120;
[6] 0, 58240, 92960, 71280, 30720, 7200, 720;
[7] 0, 1106560, 1975680, 1775760, 960960, 319200, 60480, 5040;
MAPLE
A371076 := (n, k) -> local j; 3^n*add((-1)^(k - j)*binomial(k, j)*pochhammer(j/3, n), j = 0..k): seq(seq(A371076(n, k), k = 0..n), n = 0..9);
CROSSREFS
Cf. A371077, A007559 (column 1), A000142 (main diagonal), A052609 (subdiagonal).
Sequence in context: A111549 A279411 A022696 * A019155 A107724 A247092
KEYWORD
nonn,tabl
AUTHOR
Peter Luschny, Mar 10 2024
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 July 19 00:30 EDT 2024. Contains 374388 sequences. (Running on oeis4.)