A208736 Number of nonisomorphic graded posets with 0 and 1 and non-uniform Hasse graph of rank n, with exactly 2 elements of each rank level between 0 and 1.
0, 0, 0, 1, 5, 22, 91, 361, 1392, 5265, 19653, 72694, 267179, 977593, 3565600, 12975457, 47142021, 171075606, 620303547, 2247803785, 8141857808, 29481675889, 106728951109, 386314552438, 1398132674955, 5059626441177, 18308871648576, 66249898660801
Offset: 0
References
- R. Stanley, Enumerative combinatorics. Vol. 1, Cambridge University Press, Cambridge, 1997, pp. 96-100.
Links
- Vincenzo Librandi, Table of n, a(n) for n = 0..1000
- V. Retakh, S. Serconek, and R. Wilson, Hilbert Series of Algebras Associated to Directed Graphs and Order Homology, arXiv:1010.6295 [math.RA], 2010-2011.
- Wikipedia, Graded poset
- Index entries for linear recurrences with constant coefficients, signature (8,-21,20,-5).
Crossrefs
Programs
-
Mathematica
Join[{0, 0}, LinearRecurrence[{8, -21, 20, -5}, {0, 1, 5, 22}, 40]]
-
Python
def a(n, d={0:0,1:0,2:0,3:1,4:5,5:22}): if n in d: return d[n] d[n]=8*a(n-1) - 21*a(n-2) + 20*a(n-3) - 5*a(n-4) return d[n]
Comments