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.

A122078 Triangle read by rows: T(n,k) is the number of unlabeled acyclic digraphs with n >= 0 nodes and n-k outnodes (0 <= k <= n).

Original entry on oeis.org

1, 1, 0, 1, 1, 0, 1, 2, 3, 0, 1, 3, 11, 16, 0, 1, 4, 25, 108, 164, 0, 1, 5, 47, 422, 2168, 3341, 0, 1, 6, 78, 1251, 15484, 88747, 138101, 0, 1, 7, 120, 3124, 79836, 1215783, 7409117, 11578037, 0, 1, 8, 174, 6925, 333004, 11620961, 199203464, 1252610909, 1961162564, 0
Offset: 0

Views

Author

N. J. A. Sloane, Oct 18 2006

Keywords

Examples

			Triangle T(n,k) begins:
  1:
  1, 0;
  1, 1,  0;
  1, 2,  3,    0;
  1, 3, 11,   16,     0;
  1, 4, 25,  108,   164,     0;
  1, 5, 47,  422,  2168,  3341,      0;
  1, 6, 78, 1251, 15484, 88747, 138101, 0;
  ...
		

References

  • R. W. Robinson, Numerical implementation of graph counting algorithms, AGRC Grant, Math. Dept., Univ. Newcastle, Australia, 1976.

Crossrefs

Row sums give A003087.
Diagonals include A000007, A350415.
Cf. A058876 (labeled case), A350447, A350448, A350449, A350450.

Programs

  • PARI
    \\ See link for program code.
    { my(T=AcyclicDigraphsByNonSources(8)); for(n=1, #T, print(T[n])) } \\ Andrew Howroyd, Dec 31 2021

Extensions

Zero terms inserted by Andrew Howroyd, Dec 29 2021