[go: up one dir, main page]

login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A137855
Triangle read by rows: T(n,k) = Sum_{j=1..n-k+1} Stirling2(k, j).
3
1, 1, 1, 1, 2, 1, 1, 2, 4, 1, 1, 2, 5, 8, 1, 1, 2, 5, 14, 16, 1, 1, 2, 5, 15, 41, 32, 1, 1, 2, 5, 15, 51, 122, 64, 1, 1, 2, 5, 15, 52, 187, 365, 128, 1, 1, 2, 5, 15, 52, 202, 715, 1094, 256, 1, 1, 2, 5, 15, 52, 203, 855, 2795, 3281, 512, 1
OFFSET
1,5
COMMENTS
Rows of the array tend to A000110 starting (1, 2, 5, 15, 52, ...).
LINKS
FORMULA
Take antidiagonals of an array formed by A000012 * A008277(transform), where A000012 = (1; 1,1; 1,1,1; ...) and A008277 = the Stirling2 triangle.
EXAMPLE
First few rows of the array:
1, 1, 1, 1, 1, ...
1, 2, 4, 8, 16, ...
1, 2, 5, 14, 41, ...
1, 2, 5, 14, 51, ...
1, 2, 5, 14, 52, ...
...
First few rows of the triangle:
1;
1, 1;
1, 2, 1;
1, 2, 4, 1;
1, 2, 5, 8, 1;
1, 2, 5, 14, 16, 1;
1, 2, 5, 15, 41, 32, 1;
1, 2, 5, 15, 51, 122, 64, 1;
1, 2, 5, 15, 52, 187, 365, 128, 1;
1, 2, 5, 15, 52, 202, 715, 1094, 256, 1;
...
PROG
(PARI) T(n, k)={sum(j=1, n-k+1, stirling(k, j, 2))} \\ Andrew Howroyd, Aug 09 2018
CROSSREFS
Row sums are A137856.
Sequence in context: A027935 A137940 A274859 * A113143 A181802 A371823
KEYWORD
nonn,tabl
AUTHOR
Gary W. Adamson, Feb 16 2008
EXTENSIONS
Name changed by Andrew Howroyd, Aug 09 2018
STATUS
approved