[go: up one dir, main page]

login
Sum of the bottom levels of the last column over all deco polyominoes of height 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.
4

%I #13 Jul 26 2022 15:19:41

%S 0,0,1,9,68,527,4408,40303,403046,4393339,51955528,663383135,

%T 9102982354,133668773755,2092209897524,34783032728383,612234346270510,

%U 11375905660965179,222544581264066400,4572536725690159999,98456173247669999978,2217126753620449439515

%N Sum of the bottom levels of the last column over all deco polyominoes of height 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.

%C a(n) = Sum(k*A121632(n,k), k>=0).

%D E. Barcucci, A. Del Lungo and R. Pinzani, "Deco" polyominoes, permutations and random generation, Theoretical Computer Science, 159, 1996, 29-42.

%H Alois P. Heinz, <a href="/A121633/b121633.txt">Table of n, a(n) for n = 1..449</a>

%F a(1)=0; a(n) = n*a(n-1)+(n-1)!-1 for n>=2.

%F a(n)= A000254(n)- A002672(n) a(n)= n!*sum(1/k,k=1..10)- floor(n!(e-1)) [From _Gary Detlefs_, Jul 18 2010]

%F D-finite with recurrence a(n) +(-2*n-1)*a(n-1) +(n^2+2*n-4)*a(n-2) +(-2*n^2+6*n-3)*a(n-3) +(n-3)^2*a(n-4)=0. - _R. J. Mathar_, Jul 26 2022

%e a(2)=0 because the deco polyominoes of height 2 are the vertical and horizontal dominoes, all of whose columns start at level 0.

%p a[1]:=0: for n from 2 to 23 do a[n]:=n*a[n-1]+(n-1)!-1 od: seq(a[n],n=1..23);

%t RecurrenceTable[{a[1]==0,a[n]==n*a[n-1]+(n-1)!-1},a,{n,20}] (* _Harvey P. Dale_, Dec 01 2013 *)

%Y Cf. A121632, A000254.

%K nonn

%O 1,4

%A _Emeric Deutsch_, Aug 12 2006