OFFSET
0,1
COMMENTS
Abstract simplicial complexes with n vertices for which all facets have the same dimension
EXAMPLE
There are 20 abstract simplicial complexes with 3 vertices; of these, all facets are the same dimension except for the 3 consisting of a line and a point such as {{1,2}, {3}}, so a(3)=17.
MATHEMATICA
Table[Sum[2^Binomial[n, i], {i, 0, n}]-n, {n, 0, 12}] (* Harvey P. Dale, Oct 29 2021 *)
PROG
(PARI) a(n) = sum(i=0, n, 2^binomial(n, i)) - n; \\ Michel Marcus, Aug 23 2013
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Hugo van der Sanden, Aug 10 2010
EXTENSIONS
Edited by N. J. A. Sloane, Aug 10 2010
STATUS
approved