cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A179062 Number of non-attacking placements of 7 rooks on an n X n board.

Original entry on oeis.org

0, 0, 0, 0, 0, 0, 5040, 322560, 6531840, 72576000, 548856000, 3161410560, 14841066240, 59364264960, 208702494000, 659602944000, 1906252508160, 5104345559040, 12796310741760, 30287126016000, 68146033536000
Offset: 1

Views

Author

Thomas Zaslavsky, Jun 27 2010

Keywords

Crossrefs

Column k=7 of A144084.
Cf. A179061 (6 rooks), A179063 (8 rooks).

Programs

  • Mathematica
    7! Binomial[Range[30],7]^2 (* or *) LinearRecurrence[{15,-105,455,-1365,3003,-5005,6435,-6435,5005,-3003,1365,-455,105,-15,1},{0,0,0,0,0,0,5040,322560,6531840,72576000,548856000,3161410560,14841066240,59364264960,208702494000},30] (* Harvey P. Dale, May 25 2017 *)
  • PARI
    a(n) = 7! * binomial(n, 7)^2 \\ Andrew Howroyd, Feb 13 2018

Formula

a(n) = 7!*binomial(n,7)^2.
G.f.: -5040*x^7*(x+1)*(x^6+48*x^5+393*x^4+832*x^3+393*x^2+48*x+1) / (x-1)^15. - Colin Barker, Jan 08 2013