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.

A187077 Number of row-convex polyplets with n cells.

This page as a plain text file.
%I A187077 #9 Mar 31 2012 10:23:11
%S A187077 1,4,18,83,385,1788,8305,38575,179170,832189,3865253,17952864,
%T A187077 83385309,387298083,1798875698,8355202169,38807241321,180247221864,
%U A187077 837190686169,3888482927823,18060759310562,83886449530197,389625723579965
%N A187077 Number of row-convex polyplets with n cells.
%C A187077 Equivalent to a sequence of row-convex polyhexes (A059716).
%F A187077 G.f.: -((x(x-1)^3)/(1-7x+13x^2-10x^3+2x^4)).
%F A187077 a(n) = 7a(n-1)-13a(n-2)+10a(n-3)-2a(n-4) for n > 4.
%e A187077 a(3) = 18 = A006770(3)-2 omits the two 3-plets with non-convex rows (V and inverted V).
%t A187077 a[n_]:={1,4,18,83}[[n]]/;n<5; a[n_]:=a[n]=7a[n-1]-13a[n-2]+10a[n-3]-2a[n-4]; Array[a, 23]
%Y A187077 Cf. A006770 (all fixed polyplets); A059716 (row-convex polyhexes); A001169 (row-convex polyominoes).
%K A187077 nonn
%O A187077 1,2
%A A187077 _David Bevan_, Mar 03 2011