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 A217860 #16 Oct 02 2017 02:11:53 %S A217860 1,4,11,33,88,254,697,1984,5585,15938,45424,130381,374450,1079361, %T A217860 3115291,9010177,26090857,75656608,219603868,638075127,1855506355, %U A217860 5399995044,15726096741,45827313178,133621409595,389814176004,1137757623214,3322288247568,9705228070231,26283373417131 %N A217860 Number of components over all functions on n unlabeled nodes. %F A217860 a(n) = Sum_{k=1..n} A127136(n,k)*k. %t A217860 Needs["Combinatorica`"]; %t A217860 nn=30;s[n_,k_]:=s[n,k]=a[n+1-k]+If[n<2 k,0,s[n-k,k]];a[1]=1;a[n_]:=a[n]=Sum[a[i] s[n-1,i] i,{i,1,n-1}]/(n-1);rt=Table[a[i],{i,1,nn}];c=Drop[Apply[Plus,Table[Take[CoefficientList[CycleIndex[CyclicGroup[n],s]/.Table[s[j]->Table[Sum[rt[[i]] x^(k*i),{i,1,nn}],{k,1,nn}][[j]],{j,1,nn}],x],nn],{n,1,30}]],1];Drop[CoefficientList[Series[D[Product[1/(1-y x^i)^c[[i]],{i,1,nn-1}],y]/.y->1,{x,0,nn}],x],1] (* after code given by _Robert A. Russell_ in A000081 *) %K A217860 nonn %O A217860 1,2 %A A217860 _Geoffrey Critzer_, Oct 13 2012