OFFSET
1,3
EXAMPLE
The a(2)=1 graph is: 2K_1. The a(3)=2 graphs are: 3K_1, K_1+K_2. The a(4)=4 graphs are: 4K_1, 2K_1+K_2, K_1+K_3, 2K_2.
MATHEMATICA
A005177 = Cases[Import["https://oeis.org/A005177/b005177.txt", "Table"], {_, _}][[All, 2]]~Join~{0};
etr[p_] := Module[{b}, b[n_] := b[n] = If[n == 0, 1, Sum[DivisorSum[j, # p[#]&] b[n - j], {j, 1, n}]/n]; b];
b = etr[A005177[[# + 1]]&];
a[n_] := b[n] - A005177[[n + 1]];
a /@ Range[17] (* Jean-François Alcover, Dec 02 2019 *)
CROSSREFS
KEYWORD
nonn,hard
AUTHOR
Jason Kimberley, Sep 23 2009
EXTENSIONS
Terms a(18) and beyond from Andrew Howroyd, May 21 2020
STATUS
approved