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.

A356366 Number of (directed) circuits in the complete undirected graph on n labeled vertices.

Original entry on oeis.org

1, 2, 5, 18, 523, 44884, 227838935, 1086696880188, 1566338449874827101, 694432397394116143569646
Offset: 1

Views

Author

Max Alekseyev, Oct 16 2022

Keywords

Comments

In other words, number of closed trails up to cyclic rotations (cf. A357855).

Examples

			For n = 3, we have 5 circuits: 3 of length 0 (singleton vertices), and 2 of length 3 (1->2->3->1 and 1->3->2->1).
		

Crossrefs

Formula

a(n) = Sum_{k = 0..n(n-1)/2} A357887(n,k) = n + n * Sum_{k = 1..n(n-1)/2} A357885(n,k) / k.

Extensions

a(9) from Bert Dobbelaere, Oct 17 2022
a(10) from Max Alekseyev, Jul 17 2025