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.

Previous Showing 11-14 of 14 results.

A327012 Number of factorizations of n into factors > 1 whose dual is a (strict) antichain.

Original entry on oeis.org

1, 1, 1, 2, 1, 1, 1, 3, 2, 1, 1, 2, 1, 1, 1, 5, 1, 2, 1, 2, 1, 1, 1, 3, 2, 1, 3, 2, 1, 1, 1, 7, 1, 1, 1, 7, 1, 1, 1, 3, 1, 1, 1, 2, 2, 1, 1, 5, 2, 2, 1, 2, 1, 3, 1, 3, 1, 1, 1, 2, 1, 1, 2, 11, 1, 1, 1, 2, 1, 1, 1, 12, 1, 1, 2, 2, 1, 1, 1, 5, 5, 1, 1, 2, 1, 1
Offset: 1

Views

Author

Gus Wiseman, Aug 13 2019

Keywords

Comments

Differs from A322453 at 36, 72, 100, ...
The dual of a multiset system has, for each vertex, one edge consisting of the indices (or positions) of the edges containing that vertex, counted with multiplicity. For example, the dual of {{1,2},{2,3}} is {{1},{1,2},{2}}. The dual of a factorization is the dual of the multiset partition obtained by replacing each factor with its multiset of prime indices.
An antichain is a set of multisets, none of which is a submultiset of any other.

Examples

			The a(72) = 12 factorizations:
  (8*9)
  (3*24)
  (4*18)
  (2*4*9)
  (3*3*8)
  (3*4*6)
  (2*2*18)
  (2*3*12)
  (2*2*2*9)
  (2*2*3*6)
  (2*3*3*4)
  (2*2*2*3*3)
		

Crossrefs

Set-systems whose dual is a (strict) antichain are A326965.
The version where the dual is a weak antichain is A326975.
Partitions whose dual is a (strict) antichain are A326977.

Programs

  • Mathematica
    primeMS[n_]:=If[n==1,{},Flatten[Cases[FactorInteger[n],{p_,k_}:>Table[PrimePi[p],{k}]]]];
    facs[n_]:=If[n<=1,{{}},Join@@Table[Map[Prepend[#,d]&,Select[facs[n/d],Min@@#>=d&]],{d,Rest[Divisors[n]]}]];
    dual[eds_]:=Table[First/@Position[eds,x],{x,Union@@eds}];
    submultQ[cap_,fat_]:=And@@Function[i,Count[fat,i]>=Count[cap,i]]/@Union[List@@cap];
    stableQ[u_,Q_]:=!Apply[Or,Outer[#1=!=#2&&Q[#1,#2]&,u,u,1],{0,1}];
    Table[Length[Select[facs[n],UnsameQ@@dual[primeMS/@#]&&stableQ[dual[primeMS/@#],submultQ]&]],{n,100}]

A327011 Number of unlabeled sets of subsets covering n vertices where every vertex is the unique common element of some subset of the edges, also called unlabeled covering T_1 sets of subsets.

Original entry on oeis.org

2, 2, 4, 32, 2424
Offset: 0

Views

Author

Gus Wiseman, Aug 13 2019

Keywords

Comments

Alternatively, these are unlabeled sets of subsets covering n vertices whose dual is a (strict) antichain. The dual of a set of subsets has, for each vertex, one edge consisting of the indices (or positions) of the edges containing that vertex. For example, the dual of {{1,2},{2,3}} is {{1},{1,2},{2}}. An antichain is a set of subsets where no edge is a subset of any other.

Examples

			Non-isomorphic representatives of the a(0) = 1 through a(2) = 4 sets of subsets:
  {}    {{1}}     {{1},{2}}
  {{}}  {{},{1}}  {{},{1},{2}}
                  {{1},{2},{1,2}}
                  {{},{1},{2},{1,2}}
		

Crossrefs

Unlabeled covering sets of subsets are A003181.
The same with T_0 instead of T_1 is A326942.
The non-covering version is A326951 (partial sums).
The labeled version is A326960.
The case without empty edges is A326974.

Formula

a(n) = A326974(n) / 2.
a(n > 0) = A326951(n) - A326951(n - 1).

A327017 Number of non-isomorphic multiset partitions of weight n where every vertex, as a multiset of weight 1, is the multiset-meet of some subset of the edges.

Original entry on oeis.org

1, 1, 2, 4, 9, 19, 49, 115, 310, 830, 2383
Offset: 0

Views

Author

Gus Wiseman, Aug 15 2019

Keywords

Comments

The multiset-meet of a collection of multisets has as underlying set the intersection of their underlying sets and as multiplicities the minima of their multiplicities.

Examples

			Non-isomorphic representatives of the a(1) = 1 through a(5) = 19 multiset partitions:
    {1}  {1}{1}  {1}{11}    {1}{111}      {1}{1111}
         {1}{2}  {1}{1}{1}  {1}{1}{11}    {1}{1}{111}
                 {1}{2}{2}  {1}{2}{12}    {1}{11}{11}
                 {1}{2}{3}  {1}{2}{22}    {1}{12}{22}
                            {1}{1}{1}{1}  {1}{2}{122}
                            {1}{1}{2}{2}  {1}{2}{222}
                            {1}{2}{2}{2}  {1}{1}{1}{11}
                            {1}{2}{3}{3}  {1}{1}{2}{22}
                            {1}{2}{3}{4}  {1}{2}{2}{12}
                                          {1}{2}{2}{22}
                                          {1}{2}{3}{23}
                                          {1}{2}{3}{33}
                                          {1}{1}{1}{1}{1}
                                          {1}{1}{2}{2}{2}
                                          {1}{2}{2}{2}{2}
                                          {1}{2}{2}{3}{3}
                                          {1}{2}{3}{3}{3}
                                          {1}{2}{3}{4}{4}
                                          {1}{2}{3}{4}{5}
		

Crossrefs

A327019 Number of non-isomorphic set-systems of weight n whose dual is a (strict) antichain.

Original entry on oeis.org

1, 1, 1, 1, 2, 2, 5, 7, 15, 26, 61
Offset: 0

Views

Author

Gus Wiseman, Aug 15 2019

Keywords

Comments

Also the number of non-isomorphic set-systems where every vertex is the unique common element of some subset of the edges, also called non-isomorphic T_1 set-systems.
A set-system is a finite set of finite nonempty sets. The dual of a set-system has, for each vertex, one edge consisting of the indices (or positions) of the edges containing that vertex. For example, the dual of {{1,2},{2,3}} is {{1},{1,2},{2}}.
An antichain is a set of sets, none of which is a subset of any other.

Examples

			Non-isomorphic representatives of the a(1) = 1 through a(8) = 15 multiset partitions:
  {1}  {1}{2}  {1}{2}{3}  {1}{2}{12}    {1}{2}{3}{23}    {12}{13}{23}
                          {1}{2}{3}{4}  {1}{2}{3}{4}{5}  {1}{2}{13}{23}
                                                         {1}{2}{3}{123}
                                                         {1}{2}{3}{4}{34}
                                                         {1}{2}{3}{4}{5}{6}
.
  {1}{23}{24}{34}        {12}{13}{24}{34}
  {3}{12}{13}{23}        {2}{13}{14}{234}
  {1}{2}{3}{13}{23}      {1}{2}{13}{24}{34}
  {1}{2}{3}{24}{34}      {1}{2}{3}{14}{234}
  {1}{2}{3}{4}{234}      {1}{2}{3}{23}{123}
  {1}{2}{3}{4}{5}{45}    {1}{2}{3}{4}{1234}
  {1}{2}{3}{4}{5}{6}{7}  {1}{2}{34}{35}{45}
                         {1}{4}{23}{24}{34}
                         {2}{3}{12}{13}{23}
                         {1}{2}{3}{4}{12}{34}
                         {1}{2}{3}{4}{24}{34}
                         {1}{2}{3}{4}{35}{45}
                         {1}{2}{3}{4}{5}{345}
                         {1}{2}{3}{4}{5}{6}{56}
                         {1}{2}{3}{4}{5}{6}{7}{8}
		

Crossrefs

Previous Showing 11-14 of 14 results.