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.

Showing 1-2 of 2 results.

A121698 Triangle read by rows: T(n,k) is the number of deco polyominoes of height n and having k columns ending at an even level (1<=k<=n). A deco polyomino is a directed column-convex polyomino in which the height, measured along the diagonal, is attained only in the last column.

Original entry on oeis.org

1, 1, 1, 2, 2, 2, 6, 8, 7, 3, 16, 36, 37, 23, 8, 62, 172, 220, 166, 80, 20, 230, 844, 1383, 1338, 835, 338, 72, 1114, 4796, 9331, 10828, 8265, 4282, 1452, 252, 5268, 27450, 64612, 91023, 85248, 55445, 25158, 7524, 1152, 30702, 181606, 489847, 798355
Offset: 1

Views

Author

Emeric Deutsch, Aug 23 2006

Keywords

Comments

Row sums are the factorials (A000142).
T(n,0) = A121753(n).
Sum_{k=0..n-1} k*T(n,k) = A121754(n).

Examples

			T(2,0)=1 and T(2,1)=1 because the deco polyominoes of height 2 are the horizontal and vertical dominoes, having 0 and 1 columns ending at an even level, respectively.
Triangle starts:
  1;
  1,1;
  2,2,2;
  6,8,7,3;
  16,36,37,23,8;
  62,172,220,166,80,20;
		

Crossrefs

Programs

  • Maple
    Q[1]:=t: for n from 2 to 10 do Q[n]:=expand(subs({t=s,s=t},Q[n-1])+(t*floor(n/2)+s*floor((n-1)/2))*Q[n-1]) od: for n from 1 to 10 do P[n]:=sort(subs(t=1,Q[n])) od: for n from 0 to 10 do seq(coeff(P[n],s,j),j=0..n-1) od; # yields sequence in triangular form

Formula

The row generating polynomials P[n](s) are given by P[n](s) = Q[n](1,s), where Q[n](t,s) are defined by Q[n](t,s) = Q[n-1](s,t)+(floor(n/2)*t+floor((n-1)/2)*s)*Q[n-1](t,s) for n>=2 and Q[1](t,s) = t.

A121751 Number of deco polyominoes of height n in which all columns end at an even level. A deco polyomino is a directed column-convex polyomino in which the height, measured along the diagonal, is attained only in the last column.

Original entry on oeis.org

0, 1, 2, 4, 14, 44, 194, 812, 4362, 22716, 144282, 897636, 6587454, 47632188, 396765018, 3268365228, 30471767658, 281641273164, 2906047413234, 29777551585092, 336912811924014, 3790278631556172, 46662633394518258
Offset: 1

Views

Author

Emeric Deutsch, Aug 23 2006

Keywords

Comments

a(n)=A121697(n,0).

Examples

			a(2)=1 because the deco polyominoes of height 2 are the vertical and horizontal dominoes and only the vertical one has all of its columns ending at an even level.
		

References

  • E. Barcucci, S. Brunetti and F. Del Ristoro, Succession rules and deco polyominoes, Theoret. Informatics Appl., 34, 2000, 1-14.
  • E. Barcucci, A. Del Lungo and R. Pinzani, "Deco" polyominoes, permutations and random generation, Theoretical Computer Science, 159, 1996, 29- 42.

Crossrefs

Programs

  • Maple
    a[1]:=0: a[2]:=1: for n from 3 to 26 do a[n]:=2*floor((n-1)/2)*a[n-1]-(floor((n-1)/2)*floor((n-2)/2)-1)*a[n-2] od: seq(a[n],n=1..26);

Formula

Recurrence relation: a(n)=2floor((n-1)/2)a(n-1)-[floor((n-1)/2)floor((n-2)/2)-1]a(n-2) for n>=3, a(1)=0, a(2)=1.
Conjecture D-finite with recurrence +256*a(n) -384*a(n-1) +16*(-8*n^2+40*n-67)*a(n-2) +16*(8*n^2-54*n+87)*a(n-3) +4*(4*n^4-56*n^3+242*n^2-304*n-21)*a(n-4) +4*(-2*n^4+38*n^3-249*n^2+647*n-554)*a(n-5) +(n-4)*(n-8)*(n^2-12*n+31)*a(n-6)=0. - R. J. Mathar, Jul 26 2022
Showing 1-2 of 2 results.