A350135 Number of endofunctions on [2n] whose smallest connected component has size n.
1, 1, 27, 2890, 705740, 310181886, 215071984512, 216357598418676, 298018065222408960, 538758820820128412790, 1237604585414359892787200, 3521561770316172974098259916, 12159265179096745219044911480832, 50086112147669900240287215353718700, 242646275221231775443338250567758643200
Offset: 0
Keywords
Examples
a(1) = 1: 12.
Links
- Alois P. Heinz, Table of n, a(n) for n = 0..193
Programs
-
Maple
a:= n-> `if`(n=0, 1, add(n^(n-j)*(n-1)!/(n-j)!, j=1..n)^2*binomial(2*n, n)/2): seq(a(n), n=0..14);
Comments