OFFSET
0,4
COMMENTS
An isolated point is a vertex of degree 0.
FORMULA
E.g.f.: exp(y*x)*A(x) where A(x) is the e.g.f. for A003465.
EXAMPLE
Triangle begins:
1,
1, 1,
5, 2, 1,
109, 15, 3, 1,
32297, 436, 30, 4, 1,
2147321017, 161485, 1090, 50, 5, 1
...
MATHEMATICA
nn = 5; A[z_] := Sum[Sum[(-1)^i Binomial[n, i] 2^(2^(n - i) - 1), {i, 0, n}] z^n/n!, {n, 0, nn}]; Map[Select[#, # > 0 &] &, Range[0, nn]! CoefficientList[Series[Exp[u z] A[z], {z, 0, nn}], {z, u}]] // Grid
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Geoffrey Critzer, Apr 23 2017
STATUS
approved