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.

A286810 Number of non-attacking bishop positions on a cylindrical 2 X 2n chessboard.

Original entry on oeis.org

1, 9, 49, 324, 2209, 15129, 103684, 710649, 4870849, 33385284, 228826129, 1568397609, 10749957124, 73681302249, 505019158609, 3461452808004, 23725150497409, 162614600673849, 1114577054219524, 7639424778862809, 52361396397820129, 358890350005878084, 2459871053643326449, 16860207025497407049
Offset: 0

Views

Author

Richard M. Low, May 20 2017

Keywords

Comments

Essentially the same as A081069. - R. J. Mathar, May 25 2017

Programs

  • PARI
    Vec((1 + x - 15*x^2 + 3*x^3) / ((1 - x)*(1 - 7*x + x^2)) + O(x^30)) \\ Colin Barker, May 21 2017

Formula

G.f.: (1+x^2-15*x^4+3*x^6) / (1-8*x^2+8*x^4-x^6).
a(n) = 8*a(n-1) - 8*a(n-2) + a(n-3) for n>3. - Colin Barker, May 21 2017