OFFSET
1,2
COMMENTS
A072590(n,k) equals the number of spanning trees in complete bipartite graph K(n,k).
Also the number of minimum connected dominating sets of the (n+1)-triangular honeycomb bishop graph. - Eric W. Weisstein, Jun 03 2024 and Mar 05 2025
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..429
Eric Weisstein's World of Mathematics, Connected Dominating Set.
Eric Weisstein's World of Mathematics, Triangular Honeycomb Bishop Graph.
FORMULA
a(n) = Sum_{k=1..n} (n-k+1)^(k-1)*k^(n-k) for n>=1.
a(n) ~ sqrt(2*Pi/3) * exp(1) * n^(n - 1/2) / 2^n. - Vaclav Kotesovec, Nov 22 2021
MATHEMATICA
Table[Sum[(n - k + 1)^(k - 1) k^(n - k), {k, n}], {n, 30}] (* Harvey P. Dale, Jun 26 2021 *)
PROG
(PARI) a(n)=sum(k=1, n, (n-k+1)^(k-1)*k^(n-k))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Aug 26 2007
STATUS
approved
