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.

A243717 Number of inequivalent (mod D_4) ways to place 2 nonattacking knights on an n X n board.

Original entry on oeis.org

2, 7, 18, 43, 83, 156, 257, 418, 624, 925, 1292, 1797, 2393, 3178, 4083, 5236, 6542, 8163, 9974, 12175, 14607, 17512, 20693, 24438, 28508, 33241, 38352, 44233, 50549, 57750, 65447, 74152, 83418, 93823, 104858, 117171, 130187, 144628, 159849, 176650, 194312
Offset: 2

Views

Author

Heinrich Ludwig, Jun 10 2014

Keywords

Comments

Rotations or reflections of a placement are considered as the same. If they are distinguished, numbers are A172132.

Crossrefs

Programs

  • Magma
    [ (-33+(-1)^n+4*(9+(-1)^n)*n-2*(1+(-1)^n)*n^2+2*n^4)/32: n in [2..50]]; // Wesley Ivan Hurt, Jun 11 2014
  • Maple
    A243717:=n->(-33+(-1)^n+4*(9+(-1)^n)*n-2*(1+(-1)^n)*n^2+2*n^4)/32; seq(A243717(n), n=2..50); # Wesley Ivan Hurt, Jun 11 2014
  • Mathematica
    Table[(-33 + (-1)^n + 4*(9 + (-1)^n)*n - 2*(1 + (-1)^n)*n^2 + 2*n^4)/
    32, {n, 2, 50}] (* Wesley Ivan Hurt, Jun 11 2014 *)
  • PARI
    Vec(x^2*(x^6-3*x^4-5*x^3-3*x-2)/((x-1)^5*(x+1)^3) + O(x^100)) \\ Colin Barker, Jun 10 2014
    

Formula

a(n) = (n^4 - 2*n^2 + 20*n - 16 + IF(MOD(n, 2) = 1)*(2*n^2 - 4*n - 1))/16.
a(n) = (-33+(-1)^n+4*(9+(-1)^n)*n-2*(1+(-1)^n)*n^2+2*n^4)/32. - Colin Barker, Jun 10 2014
G.f.: x^2*(x^6-3*x^4-5*x^3-3*x-2) / ((x-1)^5*(x+1)^3). - Colin Barker, Jun 10 2014