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.

A217653 Triangular array read by rows: T(n,k) is the number of unlabeled simple graphs with n nodes that have exactly k isolated nodes, (n>=0, 0<=k<=n).

Original entry on oeis.org

1, 0, 1, 1, 0, 1, 2, 1, 0, 1, 7, 2, 1, 0, 1, 23, 7, 2, 1, 0, 1, 122, 23, 7, 2, 1, 0, 1, 888, 122, 23, 7, 2, 1, 0, 1, 11302, 888, 122, 23, 7, 2, 1, 0, 1, 262322, 11302, 888, 122, 23, 7, 2, 1, 0, 1, 11730500, 262322, 11302, 888, 122, 23, 7, 2, 1, 0, 1
Offset: 0

Views

Author

Geoffrey Critzer, Oct 09 2012

Keywords

Comments

Row sums = A000088.
Sum_{k=1..n} T(n,k)*k = A006897(n).
Column k = 0 is A002494.

Examples

			1,
0, 1,
1, 0, 1,
2, 1, 0, 1,
7, 2, 1, 0, 1,
23, 7, 2, 1, 0, 1,
122, 23, 7, 2, 1, 0, 1
		

Crossrefs

Programs

  • Mathematica
    Needs["Combinatorica`"]; nn=10; s=Sum[NumberOfGraphs[n]x^n, {n,0,nn}]; CoefficientList[Series[s (1-x)/(1-y x), {x,0,nn}], {x,y}] //Grid

Formula

O.g.f.: A(x)/(1-y*x) where A(x) is o.g.f. for A002494.