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.

A144210 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 4; also row sums of A144209.

Original entry on oeis.org

1, 1, 1, 1, 4, 76, 1486, 29506, 628531, 14633011, 373486051, 10423892971, 316702467496, 10422938835196, 369779598658786, 14078057663869606, 572776958092098166, 24810200300393961286, 1140218754844983978646
Offset: 0

Views

Author

Alois P. Heinz, Sep 14 2008

Keywords

Examples

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

Crossrefs

A column of A144212. Cf. A144209.

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, Dec 02 2014, translated from Maple *)

Formula

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