cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A326874 BII-numbers of abstract simplicial complexes.

This page as a plain text file.
%I A326874 #9 Jul 31 2019 08:10:01
%S A326874 0,1,2,3,7,8,9,10,11,15,25,27,31,42,43,47,59,63,127,128,129,130,131,
%T A326874 135,136,137,138,139,143,153,155,159,170,171,175,187,191,255,385,387,
%U A326874 391,393,395,399,409,411,415,427,431,443,447,511,642,643,647,650,651,655
%N A326874 BII-numbers of abstract simplicial complexes.
%C A326874 An abstract simplicial complex is a set of finite nonempty sets (edges) that is closed under taking a nonempty subset of any edge.
%C A326874 A binary index of n is any position of a 1 in its reversed binary expansion. The binary indices of n are row n of A048793. We define the set-system with BII-number n to be obtained by taking the binary indices of each binary index of n. Every finite set of finite nonempty sets has a different BII-number. For example, 18 has reversed binary expansion (0,1,0,0,1), and since the binary indices of 2 and 5 are {2} and {1,3} respectively, the BII-number of {{2},{1,3}} is 18. Elements of a set-system are sometimes called edges.
%C A326874 The enumeration of abstract simplicial complexes by number of covered vertices is given by A307249.
%H A326874 Wikipedia, <a href="https://en.wikipedia.org/wiki/Abstract_simplicial_complex">Abstract simplicial complex</a>
%e A326874 The sequence of all abstract simplicial complexes together with their BII-numbers begins:
%e A326874     0: {}
%e A326874     1: {{1}}
%e A326874     2: {{2}}
%e A326874     3: {{1},{2}}
%e A326874     7: {{1},{2},{1,2}}
%e A326874     8: {{3}}
%e A326874     9: {{1},{3}}
%e A326874    10: {{2},{3}}
%e A326874    11: {{1},{2},{3}}
%e A326874    15: {{1},{2},{1,2},{3}}
%e A326874    25: {{1},{3},{1,3}}
%e A326874    27: {{1},{2},{3},{1,3}}
%e A326874    31: {{1},{2},{3},{1,2},{1,3}}
%e A326874    42: {{2},{3},{2,3}}
%e A326874    43: {{1},{2},{3},{2,3}}
%e A326874    47: {{1},{2},{3},{1,2},{2,3}}
%e A326874    59: {{1},{2},{3},{1,3},{2,3}}
%e A326874    63: {{1},{2},{3},{1,2},{1,3},{2,3}}
%e A326874   127: {{1},{2},{3},{1,2},{1,3},{2,3},{1,2,3}}
%e A326874   128: {{4}}
%e A326874   129: {{1},{4}}
%t A326874 bpe[n_]:=Join@@Position[Reverse[IntegerDigits[n,2]],1];
%t A326874 Select[Range[0,100],SubsetQ[bpe/@bpe[#],DeleteCases[Union@@Subsets/@bpe/@bpe[#],{}]]&]
%Y A326874 Cf. A006126, A014466, A029931, A048793, A102896, A261005, A307249, A326031, A326872, A326876.
%K A326874 nonn
%O A326874 1,3
%A A326874 _Gus Wiseman_, Jul 29 2019