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.

A338527 Number of spanning trees in the join of the disjoint union of two complete graphs each on n and n+1 vertices with the empty graph on n+1 vertices.

Original entry on oeis.org

24, 13500, 34420736, 239148450000, 3520397039081472, 94458953432730437824, 4179422085120000000000000, 283894102615246085842939590912, 28059580711858187192007680000000000, 3870669526565955444680027453177986243584
Offset: 1

Views

Author

Rigoberto Florez, Nov 07 2020

Keywords

Comments

Equivalently, the graph can be described as the graph on 3*n + 2 vertices with labels 0..3*n+1 and with i and j adjacent iff i+j> 0 mod 3.
These graphs are cographs.

Examples

			The adjacency matrix of the graph associated with n = 2 is: (compare A204437)
 [0, 1, 0, 0, 0, 1, 1, 1]
 [1, 0, 0, 0, 0, 1, 1, 1]
 [0, 0, 0, 1, 1, 1, 1, 1]
 [0, 0, 1, 0, 1, 1, 1, 1]
 [0, 0, 1, 1, 0, 1, 1, 1]
 [1, 1, 1, 1, 1, 0, 0, 0]
 [1, 1, 1, 1, 1, 0, 0, 0]
 [1, 1, 1, 1, 1, 0, 0, 0]
a(2) = 13500 because the graph has 13500 spanning trees.
		

Crossrefs

Programs

  • Mathematica
    Table[(n + 1)*(2 n + 2)^n*(2 n + 1)^(2 n - 1), {n, 1, 10}]

Formula

a(n) = (n + 1)*(2 n + 2)^n*(2 n + 1)^(2 n - 1).

Extensions

Offset changed by Georg Fischer, Nov 03 2023