OFFSET
0,3
COMMENTS
Urn A is initially filled with n labeled balls while urn B is empty. A ball is randomly selected and switched from one urn to the other. T(n,k)/n^n is the probability that urn A contains 2k balls after n switches have been made.
Row sums = n^n.
T(n,0) = n!.
T(2n,n) = A209289(n).
LINKS
Alois P. Heinz, Rows n = 0..100, flattened
FORMULA
T(n,k) = n! * [x^n*y^(2k)] (y*cosh(x)+sinh(x))^n.
EXAMPLE
1;
1;
2, 2;
6, 21;
24, 192, 40;
120, 1800, 1205;
720, 18000, 25680, 2256;
5040, 194040, 489510, 134953;
MATHEMATICA
Map[Select[#, # > 0 &] &, Prepend[Table[nn = n;
CoefficientList[
Expand[n! Coefficient[
Series[(y Cosh[x] + Sinh[x])^n, {x, 0, nn}], x^n]], y], {n, 1,
7}], {1}]] // Grid
CROSSREFS
KEYWORD
nonn,tabf
AUTHOR
Geoffrey Critzer, May 21 2013
STATUS
approved