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”).

A084417
Triangle read by rows: T(n,k)=sum((n+1-i)!*stirling2(n,n+1-i),i=1..k), n>=1, 1<=k<=n.
1
1, 2, 3, 6, 12, 13, 24, 60, 74, 75, 120, 360, 510, 540, 541, 720, 2520, 4080, 4620, 4682, 4683, 5040, 20160, 36960, 45360, 47166, 47292, 47293, 40320, 181440, 372960, 498960, 539784, 545580, 545834, 545835, 362880, 1814400, 4142880, 6048000
OFFSET
1,2
COMMENTS
Interpolates between A000670 and factorials.
FORMULA
T(n, k)=sum((n+1-i)!*stirling2(n, n+1-i), i=1..k), n>=1, 1<=k<=n.
EXAMPLE
1;2,3;6,12,13;24,60,74,75;120,360,510,540,541;
MAPLE
with(combinat): T:=(n, k)->sum((n+1-i)!*stirling2(n, n+1-i), i=1..k): seq(seq(T(n, k), k=1..n), n=1..10);
CROSSREFS
Mirror image of array in A084416.
T(n, 1)=n!=A000142(n), T(n, n)=A000670(n), T(n, n-1)=A052875(n).
Sequence in context: A369899 A102779 A287109 * A324243 A015774 A015767
KEYWORD
nonn,tabl,easy
AUTHOR
N. J. A. Sloane, Jun 24 2003
EXTENSIONS
Edited by Emeric Deutsch, May 11 2004
STATUS
approved