A208737 Number of nonisomorphic graded posets with 0 and 1 and non-uniform Hasse graph of rank n, with no 3-element antichain.
0, 0, 0, 1, 7, 37, 175, 778, 3325, 13837, 56524, 227866, 909832, 3607294, 14227447, 55894252, 218937532, 855650749, 3338323915, 13007422705, 50631143323, 196928737582, 765495534433, 2974251390529, 11552064922624, 44856304154086
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 (10,-36,57,-39,9).
Crossrefs
Programs
-
Mathematica
Join[{0}, LinearRecurrence[{10, -36, 57, -39, 9}, {0, 0, 1, 7, 37}, 40]]
-
Python
def a(n, d={0:0,1:0,2:0,3:1,4:7,5:37}): if n in d: return d[n] d[n]=10*a(n-1) - 36*a(n-2) + 57*a(n-3) - 39*a(n-4) + 9*a(n-5) return d[n]
Comments