A360854 Number of induced cycles in the n X n rook graph.
0, 1, 21, 236, 4040, 114105, 4662721, 256485936, 18226110456, 1623855703785, 177195820502965, 23237493232958796, 3605437233380103056, 653193551573628910481, 136634950180317224879985, 32681589590709963123110080, 8863149183726257535369656976
Offset: 1
Keywords
Links
- Andrew Howroyd, Table of n, a(n) for n = 1..100
- Eric Weisstein's World of Mathematics, Rook Graph.
- Wikipedia, Cycle (graph theory).
Programs
-
PARI
a(n) = 2*n*binomial(n,3) + sum(k=2, n, binomial(n,k)^2 * k! * (k-1)!)/2
Comments