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 21-23 of 23 results.

A322706 Regular triangle read by rows where T(n,k) is the number of k-regular k-uniform hypergraphs spanning n vertices.

Original entry on oeis.org

1, 1, 0, 1, 1, 0, 1, 3, 1, 0, 1, 12, 12, 1, 0, 1, 70, 330, 70, 1, 0, 1, 465, 11205, 11205, 465, 1, 0, 1, 3507, 505505, 2531200, 505505, 3507, 1, 0
Offset: 1

Views

Author

Gus Wiseman, Dec 23 2018

Keywords

Comments

We define a hypergraph to be any finite set of finite nonempty sets. A hypergraph is k-uniform if all edges contain exactly k vertices, and k-regular if all vertices belong to exactly k edges. The span of a hypergraph is the union of its edges.

Examples

			Triangle begins:
  1
  1       0
  1       1       0
  1       3       1       0
  1      12      12       1       0
  1      70     330      70       1       0
  1     465   11205   11205     465       1       0
  1    3507  505505 2531200  505505    3507       1       0
Row 4 counts the following hypergraphs:
  {{1}{2}{3}{4}}  {{12}{13}{24}{34}}  {{123}{124}{134}{234}}
                  {{12}{14}{23}{34}}
                  {{13}{14}{23}{24}}
		

Crossrefs

Row sums are A322705. Second column is A001205. Third column is A110101.

Programs

  • Mathematica
    Table[Table[SeriesCoefficient[Product[1+Times@@x/@s,{s,Subsets[Range[n],{k}]}],Sequence@@Table[{x[i],0,k},{i,n}]],{k,1,n}],{n,1,6}]

A361254 Number of n-regular graphs on 2*n labeled nodes.

Original entry on oeis.org

1, 1, 3, 70, 19355, 66462606, 2977635137862, 1803595358964773088, 15138592322753242235338875, 1793196665025885172290508971592750, 3040059281615704147007085764679679740691838, 74597015246986083384362428357508730776063716190667288, 26737694395324301026230134763403079891362936970900741153038680278
Offset: 0

Views

Author

Atabey Kaygun, Mar 06 2023

Keywords

Comments

These graphs share the same degree sequence as the complete bipartite graphs K(n,n).

Crossrefs

Programs

  • PARI
    \\ See Links in A295193 for GraphsByDegreeSeq.
    a(n)={if(n==0, 1, vecsum(GraphsByDegreeSeq(2*n, n, (p, r)->valuation(p,x) >= n-r)[, 2])) } \\ Andrew Howroyd, Mar 06 2023

Formula

a(n) = A059441(2*n, n).

Extensions

a(11)-a(12) from Andrew Howroyd, Mar 06 2023

A374842 Number of 7-regular labeled graphs on 2n nodes.

Original entry on oeis.org

1, 0, 0, 0, 1, 286884, 480413921130, 1803595358964773088, 15138592322753242235338875, 271849772205948458085090804526392, 9883018890803233316233360724489799227748, 689121157937951859333538097288863665976145304960
Offset: 0

Views

Author

Marni Mishna, Jul 23 2024

Keywords

Comments

These entries are generated by a linear recurrence.

Examples

			For example, for n=4, a(4)=1 indicates that there is a single 7-regular graph on 2n=8 vertices. Specifically, this is the complete graph.
		

Crossrefs

Alternating terms of column k=7 of A059441.
Cf. A165628 (unlabeled case).
Previous Showing 21-23 of 23 results.