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

A155194
Triangle read by rows: t(n,m)=If[m*(n - m) == 0, 1, n!*(1 - 1/Binomial[n, m])].
0
1, 1, 1, 1, 1, 1, 1, 4, 4, 1, 1, 18, 20, 18, 1, 1, 96, 108, 108, 96, 1, 1, 600, 672, 684, 672, 600, 1, 1, 4320, 4800, 4896, 4896, 4800, 4320, 1, 1, 35280, 38880, 39600, 39744, 39600, 38880, 35280, 1, 1, 322560, 352800, 358560, 360000, 360000, 358560, 352800
OFFSET
0,8
COMMENTS
Row sums are {1, 2, 3, 10, 58, 410, 3230, 28034, 267266, 2787842, 31662722,...}
EXAMPLE
{1},
{1, 1},
{1, 1, 1},
{1, 4, 4, 1},
{1, 18, 20, 18, 1},
{1, 96, 108, 108, 96, 1},
{1, 600, 672, 684, 672, 600, 1},
{1, 4320, 4800, 4896, 4896, 4800, 4320, 1},
{1, 35280, 38880, 39600, 39744, 39600, 38880, 35280, 1},
{1, 322560, 352800, 358560, 360000, 360000, 358560, 352800, 322560, 1},
{1, 3265920, 3548160, 3598560, 3611520, 3614400, 3611520, 3598560, 3548160, 3265920, 1}
MATHEMATICA
Table[Table[ If[m*(n - m) == 0, 1, n!*(1 - 1/Binomial[n, m])], {m, 0, n}], {n, 0, 10}];
Flatten[%]
CROSSREFS
Sequence in context: A075613 A221837 A189150 * A080044 A128433 A089746
KEYWORD
nonn,tabl
AUTHOR
Roger L. Bagula, Jan 21 2009
EXTENSIONS
Edited by N. J. A. Sloane, Jan 25 2009
STATUS
approved