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.

A195590 Number of ways to place 2n nonattacking kings on a vertical cylinder 4 X 2n.

Original entry on oeis.org

8, 32, 100, 276, 708, 1732, 4100, 9476, 21508, 48132, 106500, 233476, 507908, 1097732, 2359300, 5046276, 10747908, 22806532, 48234500, 101711876, 213909508, 448790532, 939524100, 1962934276, 4093640708, 8522825732, 17716740100, 36775657476, 76235669508
Offset: 1

Views

Author

Vaclav Kotesovec, Sep 21 2011

Keywords

Comments

Vertical cylinder: a chessboard where it is supposed that the columns 1 and 4 are in contact (number of columns = 4, number of rows = 2n).

Crossrefs

Formula

Recurrence: a(n) = 4*a(n-3) - 8*a(n-2) + 5*a(n-1).
G.f.: -(1+3*x)/((x-1)*(2*x-1)^2).
Explicit formula: a(n) = (5*n-3)*2^n + 4.