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 A224031 #12 Feb 16 2025 08:33:19 %S A224031 0,1,3,7,19,55,222,1303,13845,289796,12309107,1031600490,166135132131, %T A224031 50669199124597,29104991031790932,31455641633255556350, %U A224031 64032500451659605651790,245999928109779646497947269,1787823789106309664923287885113 %N A224031 Number of connected components over all simple unlabeled graphs with n nodes. %H A224031 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/ConnectedComponent.html">Connected Component</a> %F A224031 Sum_{m=1..n} A201922(m,n). %t A224031 nn=15; f[list_] := Total[Table[list[[i]]*(i-1), {i,1,Length[list]}]]; g[x_]:=Sum[NumberOfGraphs[n]x^n,{n,0,nn}]; c[x_]:=Sum[a[n]x^n,{n,0,nn}]; a[0]=1; sol=SolveAlways[g[x]==Normal[Series[Product[1/(1-x^i)^a[i], {i,1,nn}], {x,0,nn}]], x]; b=Drop[Flatten[Table[a[n],{n,0,nn}]/.sol],1]; Map[f,CoefficientList[Series[Product[1/(1-y x^i)^b[[i]], {i,1,nn}], {x,0,nn}], {x,y}]] %K A224031 nonn %O A224031 0,3 %A A224031 _Geoffrey Critzer_, Mar 30 2013