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 A340027 #5 Jan 11 2021 23:08:42 %S A340027 1,1,2,7,50,520,10665,400220,29204589,4143245857,1146827743079, %T A340027 619412332805088,653237982066620540,1346571060160843394520, %U A340027 5432476352054378478159877,42947950068987980977264834190,666212968663987333085874313873428,20301440661023158546856805172595805762 %N A340027 Number of inequivalent vertex colorings of connected graphs on n unlabeled vertices. %C A340027 Equivalence is up to permutation of the colors. Adjacent vertices may have the same color. %e A340027 a(3) = 7 because there are 2 connected graphs on 3 vertices. The complete graph K_3 can be coloring in 3 ways (111, 112, 123) and the path graph P_3 can be colored in 4 ways (111, 112, 121, 123). %o A340027 (PARI) \\ See links in A339645 for combinatorial species functions. %o A340027 edges(v) = {sum(i=2, #v, sum(j=1, i-1, gcd(v[i], v[j]))) + sum(i=1, #v, v[i]\2)} %o A340027 graphsCycleIndex(n)={my(s=0); forpart(p=n, s+=permcount(p) * 2^edges(p) * sMonomial(p)); s/n!} %o A340027 graphsSeries(n)={sum(k=0, n, graphsCycleIndex(k)*x^k) + O(x*x^n)} %o A340027 InequivalentColoringsSeq(1+sLog(graphsSeries(15))) %Y A340027 Cf. A340024, A340025, A340026. %K A340027 nonn %O A340027 0,3 %A A340027 _Andrew Howroyd_, Jan 02 2021