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.
%I A217067 #22 Oct 04 2017 08:58:08 %S A217067 1,1,2,3,6,9,15,22,35,51,77,110,162,228,326,454,637,875,1208,1641, %T A217067 2235,3006,4044,5388,7177,9481,12510,16399,21463,27932,36287,46911, %U A217067 60531,77776,99733,127415,162457,206444,261821,331063,417801,525828,660536,827684 %N A217067 Number of unlabeled graphs on n nodes whose components are cycles or complete graphs. %C A217067 Also number of partitions of n, with one kind of 1, 2 and 3 and two kinds of 4, 5, 6, ... . %C A217067 Number of n-vertex graphs that do not contain a triangle or claw as induced subgraph (there is one connected triangle-free claw-free graph with 1 to 3 vertices each, and two for n >= 4 vertices (P_n and C_n)). - _Falk Hüffner_, Jan 11 2016 %H A217067 Alois P. Heinz, <a href="/A217067/b217067.txt">Table of n, a(n) for n = 0..10000</a> %H A217067 N. J. A. Sloane, <a href="/transforms.txt">Transforms</a> %F A217067 G.f.: (1-x)(1-x^2)(1-x^3) Product_{i>=1} 1/(1-x^i)^2. %F A217067 EULER transform of 1, 1, 1, 2, 2, 2, ... . %p A217067 a:= proc(n) a(n):= `if`(n=0, 1, add(add(d*`if`(d<4, 1, 2), d=numtheory[divisors(j)) *a(n-j), j=1..n)/n) end: seq(a(n), n=0..50); # _Alois P. Heinz_, Sep 26 2012 %t A217067 nn=40;a=x/(1-2x);p=Product[1/(1- x^i)^2,{i,1,nn}];CoefficientList[Series[p(1-x)(1-x^2)(1-x^3),{x,0,nn}],x] %o A217067 (PARI) list(lim)=Vec((1-x)*(1-x^2)*(1-x^3)*prod(i=1, lim\=1, 1/(1-x^i)^2, O(x^lim++)+1)) \\ _Charles R Greathouse IV_, Sep 26 2012 %Y A217067 Cf. A000715. %K A217067 nonn %O A217067 0,3 %A A217067 _Geoffrey Critzer_, Sep 26 2012