The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A271697 Triangle read by rows, T(n,k) = Sum_{j=0..n} C(-j-1,-n-1)*E1(j,k), E1 the Eulerian numbers A173018, for n>=0 and 0<=k<=n. 4
1, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 7, 1, 0, 0, 1, 21, 21, 1, 0, 0, 1, 51, 161, 51, 1, 0, 0, 1, 113, 813, 813, 113, 1, 0, 0, 1, 239, 3361, 7631, 3361, 239, 1, 0, 0, 1, 493, 12421, 53833, 53833, 12421, 493, 1, 0, 0, 1, 1003, 42865, 320107, 607009, 320107, 42865, 1003, 1, 0 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,13
LINKS
FORMULA
T(n,k) = T(n,n-k). - Alois P. Heinz, Oct 29 2020
EXAMPLE
Triangle starts:
1;
0, 0;
0, 1, 0;
0, 1, 1, 0;
0, 1, 7, 1, 0;
0, 1, 21, 21, 1, 0;
0, 1, 51, 161, 51, 1, 0;
0, 1, 113, 813, 813, 113, 1, 0;
...
MAPLE
A271697 := (n, k) -> add(binomial(-j-1, -n-1)*combinat:-eulerian1(j, k), j=0..n):
seq(seq(A271697(n, k), k=0..n), n=0..11);
MATHEMATICA
<<Combinatorica`
Flatten[Table[Sum[Binomial[-j-1, -n-1] Eulerian[j, k], {j, 0, n}], {n, 0, 9}, {k, 0, n}]]
(* Second program (Combinatorica not needed): *)
E1[n_ /; n >= 0, 0] = 1;
E1[n_, k_] /; k < 0 || k > n = 0;
E1[n_, k_] := E1[n, k] = (n-k) E1[n-1, k-1] + (k+1) E1[n-1, k];
T[n_, k_] := Sum[Binomial[-j-1, -n-1] E1[j, k], {j, 0, n}];
Table[T[n, k], {n, 0, 10}, {k, 0, n}] // Flatten (* Jean-François Alcover, Oct 29 2020 *)
CROSSREFS
Variant: A046739 (main entry for this triangle).
Cf. A000166 (row sums), A122045 (Euler numbers are the alternating row sums), A070313 (col. 2) and (diag. n,n-2).
Cf. A173018.
T(2n,n) gives A320337.
Sequence in context: A036949 A059515 A136428 * A226371 A298937 A223855
KEYWORD
nonn,tabl
AUTHOR
Peter Luschny, Apr 12 2016
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 May 14 22:35 EDT 2024. Contains 372533 sequences. (Running on oeis4.)