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-5 of 5 results.

A003087 Number of acyclic digraphs with n unlabeled nodes.

Original entry on oeis.org

1, 1, 2, 6, 31, 302, 5984, 243668, 20286025, 3424938010, 1165948612902, 797561675349580, 1094026876269892596, 3005847365735456265830, 16530851611091131512031070, 181908117707763484218885361402
Offset: 0

Views

Author

Keywords

Comments

Also the number of equivalence classes of n X n real (0,1)-matrices with all eigenvalues positive, up to conjugation by permutations.

References

  • F. Harary and E. M. Palmer, Graphical Enumeration, Academic Press, NY, 1973, p. 194.
  • R. W. Robinson, Numerical implementation of graph counting algorithms, AGRC Grant, Math. Dept., Univ. Newcastle, Australia, 1976.
  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Crossrefs

Cf. A003024 (the labeled case), A082402, A101228 (weakly connected, inverse Euler Trans).
Rows sums of A122078, A350447, A350448.

A350449 Triangle read by rows: T(n,k) is the number of weakly connected acyclic digraphs on n unlabeled nodes with k arcs, n >= 1, k = 0..(n-1)*n/2.

Original entry on oeis.org

1, 0, 1, 0, 0, 3, 1, 0, 0, 0, 8, 9, 6, 1, 0, 0, 0, 0, 27, 54, 79, 63, 33, 10, 1, 0, 0, 0, 0, 0, 91, 320, 732, 1136, 1281, 1056, 649, 281, 85, 15, 1, 0, 0, 0, 0, 0, 0, 350, 1788, 6012, 14378, 26529, 38407, 44621, 41638, 31321, 18843, 8983, 3325, 920, 180, 21, 1
Offset: 1

Views

Author

Andrew Howroyd, Dec 31 2021

Keywords

Examples

			Triangle begins:
  [1] 1;
  [2] 0, 1;
  [3] 0, 0, 3, 1;
  [4] 0, 0, 0, 8,  9,  6,  1;
  [5] 0, 0, 0, 0, 27, 54, 79, 63, 33, 10, 1;
  ...
		

Crossrefs

Row sums are A101228.
Columns sums are A350451.
Leading diagonal is A000238.
Cf. A350447 (not necessarily connected), A350450 (transpose).

Programs

  • PARI
    \\ See PARI link in A122078 for program code.
    { my(T=WeakAcyclicDigraphsByArcs(6)); for(n=1, #T, print(T[n])) }

A350450 Triangle read by rows: T(n,k) is the number of unlabeled weakly connected acyclic digraphs with n arcs and k vertices, n >= 0, k = 1..n+1.

Original entry on oeis.org

1, 0, 1, 0, 0, 3, 0, 0, 1, 8, 0, 0, 0, 9, 27, 0, 0, 0, 6, 54, 91, 0, 0, 0, 1, 79, 320, 350, 0, 0, 0, 0, 63, 732, 1788, 1376, 0, 0, 0, 0, 33, 1136, 6012, 9933, 5743, 0, 0, 0, 0, 10, 1281, 14378, 45225, 54502, 24635, 0, 0, 0, 0, 1, 1056, 26529, 151848, 322736, 298250, 108968
Offset: 0

Views

Author

Andrew Howroyd, Dec 31 2021

Keywords

Examples

			Triangle begins:
  1;
  0, 1;
  0, 0, 3;
  0, 0, 1, 8;
  0, 0, 0, 9, 27;
  0, 0, 0, 6, 54,   91;
  0, 0, 0, 1, 79,  320,  350;
  0, 0, 0, 0, 63,  732, 1788, 1376;
  0, 0, 0, 0, 33, 1136, 6012, 9933, 5743;
  ...
		

Crossrefs

Main diagonal is A000238.
Row sums are A350451.
Column sums are A101228.
Cf. A122078, A350449 (transpose).

Programs

  • PARI
    \\ See PARI link in A122078 for program code.
    { my(T=WeakAcyclicDigraphsTr(10)); for(n=1, #T, print(T[n])); }

A350451 Number of weakly connected acyclic digraphs with n arcs.

Original entry on oeis.org

1, 1, 3, 9, 36, 151, 750, 3959, 22857, 140031, 909388, 6202031, 44256875, 328994157, 2540242646, 20317980102, 167980915848, 1432808198569, 12587788263807, 113739153822878, 1055610955120803, 10051265993496814, 98083750658261085, 979961276867802001, 10015362142357613001
Offset: 0

Views

Author

Andrew Howroyd, Dec 31 2021

Keywords

Crossrefs

Row sums of A350450.
Column sums of A350449.

Programs

  • PARI
    \\ See PARI link in A122078 for program code.
    { my(T=WeakAcyclicDigraphsTr(15)); vector(#T, n, vecsum(T[n])) }

A361587 Triangle read by rows: T(n,k) is the number of weakly connected digraphs on n unlabeled nodes with k strongly connected components.

Original entry on oeis.org

1, 0, 1, 0, 1, 1, 0, 5, 4, 4, 0, 83, 56, 36, 24, 0, 5048, 2406, 1101, 542, 267, 0, 1047008, 324917, 101307, 37017, 14947, 5647, 0, 705422362, 136882286, 27757789, 7134897, 2257234, 779257, 237317, 0, 1580348371788, 183851281949, 23086772643, 3922864504, 907027520, 258909828, 78691767, 20035307
Offset: 0

Views

Author

Andrew Howroyd, Mar 16 2023

Keywords

Examples

			Triangle begins:
  1;
  0,       1;
  0,       1,      1;
  0,       5,      4,      4;
  0,      83,     56,     36,    24;
  0,    5048,   2406,   1101,   542,   267;
  0, 1047008, 324917, 101307, 37017, 14947, 5647;
  ...
		

Crossrefs

Column k=1 is A035512.
Main diagonal is A101228.
Row sums are A003085.

Programs

  • PARI
    \\ See PARI link in A350794 for program code.
    { my(A=A361587triang(6)); for(n=1, #A, print(A[n])) }
Showing 1-5 of 5 results.