These are precisely the graphs G in which there exists a spanning subgraph F of G such that every vertex in F has odd degree. The number of such subgraphs in any such graph G is 2^(m-n+c) where m,n,c is the number of edges, vertices, and components of G respectively. - Geoffrey Critzer, Feb 23 2020
(PARI) seq(n)={my(g=log(sum(k=0, 2*n, 2^binomial(k, 2)*x^k/k!, O(x^(2*n+1)))), v=Vec(serlaplace(exp(sum(k=0, n, polcoef(g, 2*k)*x^(2*k), O(x^(2*n+1))))))); vector(n+1, i, v[2*i-1])} \\ Andrew Howroyd, Jan 20 2026