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.

A144208 Number of simple graphs on n labeled nodes, where each maximally connected subgraph consists of a single node or has a unique cycle of length 3; also row sums of A144207.

Original entry on oeis.org

1, 1, 1, 2, 17, 221, 3261, 54801, 1049235, 22695027, 548904831, 14701691121, 432342705351, 13856514927207, 480891887472585, 17971038945463101, 719613541474095591, 30743125693699501431, 1395902175504288127695
Offset: 0

Views

Author

Alois P. Heinz, Sep 14 2008

Keywords

Examples

			a(3) = 2, because there are 2 simple graphs on 3 labeled nodes, where each maximally connected subgraph consists of a single node or has a unique cycle of length 3:
.1.2. .1-2.
..... .|/..
.3... .3...
		

Crossrefs

Row sums of triangle A144207. A column of A144212. Cf. A053507, A007318.

Programs

  • Maple
    T:= proc(n,k) option remember; if k=0 then 1 elif k<0 or n add(T(n,k), k=0..n): seq(a(n), n=0..23);
  • Mathematica
    T[n_, k_] := T[n, k] = Which[k == 0, 1, k<0 || nJean-François Alcover, Feb 05 2015, after Alois P. Heinz *)

Formula

a(n) = Sum_{k=0..n} A144207(n,k).
a(n) ~ c * n^(n-1), where c = 0.762590842281789937101466... . - Vaclav Kotesovec, Sep 10 2014