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.

Showing 1-3 of 3 results.

A301920 Number of unlabeled uniform connected hypergraphs spanning n vertices.

Original entry on oeis.org

1, 1, 1, 3, 10, 55, 2369, 14026242, 29284932065996223, 468863491068204425232922367146585, 1994324729204021501147398087008429476673379600542622915802043455294332
Offset: 0

Views

Author

Gus Wiseman, Jun 19 2018

Keywords

Comments

A hypergraph is uniform if all edges have the same size.

Examples

			Non-isomorphic representatives of the a(4) = 10 hypergraphs:
  {{1,2,3,4}}
  {{1,3,4},{2,3,4}}
  {{1,3},{2,4},{3,4}}
  {{1,4},{2,4},{3,4}}
  {{1,2,4},{1,3,4},{2,3,4}}
  {{1,2},{1,3},{2,4},{3,4}}
  {{1,4},{2,3},{2,4},{3,4}}
  {{1,3},{1,4},{2,3},{2,4},{3,4}}
  {{1,2,3},{1,2,4},{1,3,4},{2,3,4}}
  {{1,2},{1,3},{1,4},{2,3},{2,4},{3,4}}
		

Crossrefs

Extensions

Terms a(6) and beyond from Andrew Howroyd, Aug 26 2019

A003190 Number of connected 2-plexes.

Original entry on oeis.org

1, 0, 1, 3, 29, 2101, 7011181, 1788775603301, 53304526022885278403, 366299663378889804782330207902, 1171638318502622784366970315262493034215728, 3517726593606524901243694560022510194169866584119717555335
Offset: 1

Views

Author

Keywords

Comments

The Palmer reference (incorrectly) has a(7)=7011349, a(8)=1788775603133, a(9)=53304526022885278659. - Sean A. Irvine, Mar 05 2015
Also connected 3-uniform hypergraphs on n vertices. - Gus Wiseman, Feb 23 2019

Examples

			From _Gus Wiseman_, Feb 23 2019: (Start)
Non-isomorphic representatives of the a(5) = 29 2-plexes:
  {{125}{345}}
  {{123}{245}{345}}
  {{135}{245}{345}}
  {{145}{245}{345}}
  {{123}{145}{245}{345}}
  {{124}{135}{245}{345}}
  {{125}{135}{245}{345}}
  {{134}{235}{245}{345}}
  {{145}{235}{245}{345}}
  {{123}{124}{135}{245}{345}}
  {{123}{145}{235}{245}{345}}
  {{124}{134}{235}{245}{345}}
  {{134}{145}{235}{245}{345}}
  {{135}{145}{235}{245}{345}}
  {{145}{234}{235}{245}{345}}
  {{123}{124}{134}{235}{245}{345}}
  {{123}{134}{145}{235}{245}{345}}
  {{123}{145}{234}{235}{245}{345}}
  {{124}{135}{145}{235}{245}{345}}
  {{125}{135}{145}{235}{245}{345}}
  {{135}{145}{234}{235}{245}{345}}
  {{123}{124}{135}{145}{235}{245}{345}}
  {{124}{135}{145}{234}{235}{245}{345}}
  {{125}{135}{145}{234}{235}{245}{345}}
  {{134}{135}{145}{234}{235}{245}{345}}
  {{123}{124}{135}{145}{234}{235}{245}{345}}
  {{125}{134}{135}{145}{234}{235}{245}{345}}
  {{124}{125}{134}{135}{145}{234}{235}{245}{345}}
  {{123}{124}{125}{134}{135}{145}{234}{235}{245}{345}}
(End)
		

References

  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Crossrefs

Column k=3 of A301924.
Cf. A000665 (unlabeled 3-uniform), A025035, A125791 (labeled 3-uniform), A289837, A301922, A302374 (labeled 3-uniform spanning), A302394, A306017, A319540, A320395, A322451 (unlabeled 3-uniform spanning), A323292-A323299.

Formula

Inverse Euler transform of A000665. - Sean A. Irvine, Mar 05 2015

Extensions

a(7)-a(9) corrected and extended by Sean A. Irvine, Mar 05 2015

A302129 Number of unlabeled uniform connected hypergraphs of weight n.

Original entry on oeis.org

1, 1, 1, 1, 2, 1, 6, 1, 9, 10, 17, 1, 108, 1, 86, 401, 482, 1, 4469, 1, 8435, 47959, 8082, 1, 1007342, 52414, 112835, 15338453, 11899367, 1, 362657533, 1, 977129970, 9349593479, 35787684, 1771297657, 390347162497, 1, 779945988, 9360467497257, 16838238535445
Offset: 0

Views

Author

Gus Wiseman, Jun 20 2018

Keywords

Comments

A hypergraph is uniform if all edges have the same size. The weight of a hypergraph is the sum of cardinalities of the edges. Weight is generally not the same as number of vertices.

Examples

			Non-isomorphic representatives of the a(8) = 9 uniform connected hypergraphs:
  {{1,2,3,4,5,6,7,8}}
  {{1,2,3,7}, {4,5,6,7}}
  {{1,2,5,6}, {3,4,5,6}}
  {{1,3,4,5}, {2,3,4,5}}
  {{1,2}, {1,3}, {2,4}, {3,4}}
  {{1,3}, {2,4}, {3,5}, {4,5}}
  {{1,4}, {2,3}, {2,4}, {3,4}}
  {{1,4}, {2,5}, {3,5}, {4,5}}
  {{1,5}, {2,5}, {3,5}, {4,5}}
		

Crossrefs

Programs

  • PARI
    \\ See A331508 for T(n, k).
    InvEulerT(v)={my(p=log(1+x*Ser(v))); dirdiv(vector(#v,n,polcoef(p,n)), vector(#v,n,1/n))}
    a(n) = {if(n==0, 1, sumdiv(n, d, if(d==1 || d==n, d==1, InvEulerT(vector(d, i, T(n/d, i)))[d] )))} \\ Andrew Howroyd, Jan 16 2024

Formula

a(p) = 1 for prime p. - Andrew Howroyd, Jan 16 2024

Extensions

a(11) onwards from Andrew Howroyd, Jan 16 2024
Showing 1-3 of 3 results.