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

A325138
a(n) = Sum_{k=0..n} Sum_{j=0..n-k} binomial(j+k, k)*|Stirling1(n, j+k)|*(k+1)^j.
1
1, 2, 8, 45, 320, 2730, 27054, 304584, 3832688, 53233272, 808045560, 13297113720, 235635543912, 4471304008704, 90415029604704, 1940195561267880, 44021278940004480, 1052672670160355520, 26454200168941936704, 696874344218429604480, 19198703924579071278720
OFFSET
0,2
PROG
(PARI) a(n) = sum(k=0, n, sum(j=0, n-k, binomial(j+k, k)*abs(stirling(n, j+k, 1))*(k+1)^j)); \\ Michel Marcus, Apr 13 2019
CROSSREFS
Row sums of A325137.
Sequence in context: A139678 A290445 A152401 * A358436 A009345 A084553
KEYWORD
nonn
AUTHOR
Peter Luschny, Apr 13 2019
STATUS
approved