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!)
A271701 Triangle read by rows, T(n,k) = Sum_{j=0..n} (-1)^(n-j)*C(-j,-n)*S2(k,j), S2 the Stirling set numbers A048993, for n>=0 and 0<=k<=n. 0
1, 0, 1, 0, 1, 2, 0, 1, 3, 8, 0, 1, 4, 13, 41, 0, 1, 5, 19, 69, 252, 0, 1, 6, 26, 106, 431, 1782, 0, 1, 7, 34, 153, 681, 3068, 14121, 0, 1, 8, 43, 211, 1016, 4929, 24361, 123244, 0, 1, 9, 53, 281, 1451, 7515, 39537, 212509, 1169832 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,6
LINKS
EXAMPLE
Triangle starts:
[1]
[0, 1]
[0, 1, 2]
[0, 1, 3, 8]
[0, 1, 4, 13, 41]
[0, 1, 5, 19, 69, 252]
[0, 1, 6, 26, 106, 431, 1782]
[0, 1, 7, 34, 153, 681, 3068, 14121]
MAPLE
T := (n, k) -> add(Stirling2(k, j)*binomial(-j, -n)*(-1)^(n-j), j=0..n);
seq(seq(T(n, k), k=0..n), n=0..9);
MATHEMATICA
Flatten[Table[Sum[(-1)^(n-j) Binomial[-j, -n] StirlingS2[k, j], {j, 0, n}], {n, 0, 9}, {k, 0, n}]]
CROSSREFS
Sequence in context: A325842 A153506 A325670 * A271699 A216701 A278326
KEYWORD
nonn,tabl
AUTHOR
Peter Luschny, Apr 14 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 April 23 03:30 EDT 2024. Contains 371906 sequences. (Running on oeis4.)