A291593 Number of (non-null) connected induced subgraphs in the n X n rook complement graph.
1, 6, 397, 64627, 33548446, 68719441230, 562949953224709, 18446744073708514623, 2417851639229258344134994, 1267650600228229401496677070990, 2658455991569831745807614120434011325, 22300745198530623141535718272648360902487971
Offset: 1
Keywords
Links
- Eric Weisstein's World of Mathematics, Connected Graph
- Eric Weisstein's World of Mathematics, Rook Complement Graph
- Eric Weisstein's World of Mathematics, Vertex-Induced Subgraph
Programs
-
Mathematica
Table[2^(n^2) - 2 n (2^n - n - 1) - n^2 (2^(n - 1) - 1)^2 - Binomial[n, 2]^2 - 1, {n, 10}]
-
PARI
a(n) = 2^(n^2) - 2*n*(2^n-n-1) - n^2*(2^(n-1)-1)^2 - binomial(n,2)^2 - 1; \\ Andrew Howroyd, Aug 30 2017
Formula
a(n) = 2^(n^2) - 2*n*(2^n-n-1) - n^2*(2^(n-1)-1)^2 - binomial(n,2)^2 - 1. - Andrew Howroyd, Aug 30 2017
Extensions
a(6)-a(12) from Andrew Howroyd, Aug 30 2017
Comments