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.

A054963 Number of cells in the first column of all directed column-convex polyominoes of area n+1.

Original entry on oeis.org

1, 3, 9, 26, 72, 194, 515, 1357, 3563, 9340, 24466, 64068, 167749, 439191, 1149837, 3010334, 7881180, 20633222, 54018503, 141422305, 370248431, 969323008, 2537720614, 6643838856, 17393795977, 45537549099, 119218851345
Offset: 0

Views

Author

Emeric Deutsch, Jun 16 2001

Keywords

Crossrefs

Cf. A000045.

Programs

  • PARI
    Vec((1-2*x+2*x^2)/((1-x)^2*(1-3*x+x^2)) + O(x^40)) \\ Michel Marcus, Feb 14 2016

Formula

a(n) = Fibonacci(2*n) + Fibonacci(2*n+2) - n = A002878(n)-n.
G.f.: (1-2x+2x^2)/((1-x)^2(1-3x+x^2)).
a(n) = 5*a(n-1) - 8*a(n-2) + 5*a(n-3) - a(n-4) for n >= 4. - Jinyuan Wang, Mar 10 2020