login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A290586 Number of irredundant sets in the n X n rook graph. 5

%I #21 Aug 13 2017 02:55:11

%S 2,11,94,1185,20106,453271,13169346,476777153,20869990066,

%T 1076251513071,64077661097418,4337014196039377,329768528011095642,

%U 27905789218764082151,2608140451597365915346,267506385903592339178241,29943760423790270319833826

%N Number of irredundant sets in the n X n rook graph.

%H Andrew Howroyd, <a href="/A290586/b290586.txt">Table of n, a(n) for n = 1..100</a>

%H Andrew Howroyd, <a href="/A290586/a290586.txt">Irredundant Sets in Rook Graphs</a>

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/IrredundantSet.html">Irredundant Set</a>

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/RookGraph.html">Rook Graph</a>

%F a(n) = 2*n^n - n! + Sum_{k=0..n-1} Sum_{r=2*k..n-1} binomial(n,k) * binomial(n,r) * k! * A008299(r,k) * c(n-k,n-r) where c(m,n) = Sum_{i=0..m-1} binomial(n,i) * (n^i - n!*stirling2(i, n)). - _Andrew Howroyd_, Aug 11 2017

%t s[n_, k_]:=Sum[(-1)^i*Binomial[n, i] StirlingS2[n - i, k - i], {i, 0, Min[n, k]}];

%t c[m_, n_, x_]:=Sum[Binomial[m, i] (n^i - n!*StirlingS2[i, n])*x^i, {i, 0, m - 1}];

%t p[m_, n_, x_]:=Sum[Sum[Binomial[m, k] Binomial[n, r]* k!*s[r, k]*x^r*c[m - k, n - r, x], {r, 2k, n - 1}], {k,0, m - 1}];

%t Table[2*n^n - n! + p[n, n, 1], {n, 30}]

%t (* _Indranil Ghosh_, Aug 12 2017, after PARI code *)

%o (PARI) \\ here s(n,k) is A008299, 2*n^n - n! is A248744.

%o s(n,k)=sum(i=0, min(n, k), (-1)^i * binomial(n, i) * stirling(n-i, k-i, 2) );

%o c(m,n,x)=sum(i=0, m-1, binomial(m, i) * (n^i - n!*stirling(i, n, 2))*x^i);

%o p(m,n,x)={sum(k=0, m-1, sum(r=2*k, n-1, binomial(m,k) * binomial(n,r) * k! * s(r,k) * x^r * c(m-k,n-r,x) ))}

%o a(n) = 2*n^n - n! + p(n,n,1); \\ _Andrew Howroyd_, Aug 11 2017

%Y Main diagonal of A290818.

%Y Row sums of A290823.

%Y Cf. A008299, A248744.

%K nonn

%O 1,1

%A _Eric W. Weisstein_, Aug 07 2017

%E a(4) corrected and a(5) from _Andrew Howroyd_, Aug 07 2017

%E Terms a(6) and beyond from _Andrew Howroyd_, Aug 11 2017

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 16:40 EDT 2024. Contains 371916 sequences. (Running on oeis4.)