OFFSET
1,2
COMMENTS
Directed d- diagonally convex polyominoes. [David Bevan, Mar 15 2011]
REFERENCES
V. K. Bhat et al., Enumeration of directed compact site animals in two dimensions, J. Phys. A 19 (1986), 3261-3265.
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
EXAMPLE
a(3)=5: the six fixed trominoes excluding one orientation of the L tromino. [David Bevan, Mar 15 2011]
MATHEMATICA
a[n_, k_]:=0/; n<1||k<1||k(k+1)/2>n; a[1, 1]=1; a[n_, k_]:=a[n, k]=Sum[(j-k+2)a[n-k, j], {j, k-1, n-k}]; a[n_]:=Sum[a[n, k], {k, n}]; Array[a, 30] (* David Bevan, Mar 15 2011 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
EXTENSIONS
Name and offset corrected, and more terms added by David Bevan, Mar 15 2011.
STATUS
approved