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

A192562
a(n) = sum(abs(stirling1(n,k))*stirling2(n+1,k+1)*k!,k=0..n).
0
1, 1, 5, 56, 1024, 27114, 969128, 44610432, 2556362016, 177733575120, 14692805761512, 1420846650571776, 158583233552744064, 20199186787986074400, 2908060636034265554880, 469318752131725598874624, 84293191721843435282950656
OFFSET
0,3
MATHEMATICA
Table[Sum[Abs[StirlingS1[n, k]]StirlingS2[n+1, k+1]k!, {k, 0, n}], {n, 0, 100}]
PROG
(Maxima) makelist(sum(abs(stirling1(n, k))*stirling2(n+1, k+1)*k!, k, 0, n), n, 0, 24);
CROSSREFS
Sequence in context: A217819 A132618 A371314 * A060080 A203522 A180874
KEYWORD
nonn
AUTHOR
Emanuele Munarini, Jul 04 2011
STATUS
approved