OFFSET
0,4
COMMENTS
Equivalently, number of bipartite graphs whose complement is connected. The only bipartite graphs with disconnected complement are complete bipartite graphs. - Falk Hüffner, Jan 22 2016
LINKS
Andrew Howroyd, Table of n, a(n) for n = 0..50
FORMULA
a(n) = A033995(n) - floor(n/2).
MATHEMATICA
etr[p_] := Module[{b}, b[n_] := b[n] = If[n == 0, 1, Sum[Sum[d*p[d], {d, Divisors[j]}]*b[n - j], {j, 1, n}]/n]; b];
b = etr[A005142[[# + 1]]&];
a[n_] := b[n] - Floor[n/2];
a /@ Range[0, 50] (* Jean-François Alcover, Sep 17 2019 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Jim Nastos, Jan 24 2003
EXTENSIONS
Corrected and extended using formula by Falk Hüffner, Jan 22 2016
a(0)=1 prepended and terms a(21) and beyond from Andrew Howroyd, Sep 05 2018
STATUS
approved