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.

A059716 Number of column convex polyominoes with n hexagonal cells.

Original entry on oeis.org

1, 3, 11, 42, 162, 626, 2419, 9346, 36106, 139483, 538841, 2081612, 8041537, 31065506, 120010109, 463614741, 1791004361, 6918884013, 26728553546, 103255896932, 398891029862, 1540968200661, 5952961630324, 22997069087436
Offset: 1

Views

Author

Keywords

Programs

  • Maple
    gf := x*(1-x)^3/(1-6*x+10*x^2-7*x^3+x^4): s := series(gf, x, 50): for i from 1 to 100 do printf(`%d,`,coeff(s,x,i)) od:
  • Mathematica
    a[1]=1; a[2]=3; a[3]=11; a[4]=42; a[n_] := a[n] = 6*a[n-1] - 10*a[n-2] + 7*a[n-3] - a[n-4]; Table[a[n], {n, 1, 24}] (* Jean-François Alcover, Mar 30 2015 *)
    LinearRecurrence[{6,-10,7,-1},{1,3,11,42},24] (* Ray Chandler, Jul 16 2015 *)

Formula

G.f.: x(1-x)^3/(1-6x+10x^2-7x^3+x^4).

Extensions

More terms from James Sellers, Feb 09 2001