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 A241839 #22 Feb 16 2025 08:33:22 %S A241839 0,0,1,4,19,107,849,11100,261058,11716404,1006700026,164059811497, %T A241839 50335907479783,29003487412533265,31397381139819043520, %U A241839 63969560111526659139866,245871831681641239553413008,1787331725248249110678608976294,24636021429399437942454151113206764 %N A241839 Number of simple connected graphs on n nodes that are not regular. %H A241839 Travis Hoppe and Anna Petrone, <a href="https://github.com/thoppe/Encyclopedia-of-Finite-Graphs">Encyclopedia of Finite Graphs</a> %H A241839 T. Hoppe and A. Petrone, <a href="http://arxiv.org/abs/1408.3644">Integer sequence discovery from small graphs</a>, arXiv preprint arXiv:1408.3644 [math.CO], 2014. %H A241839 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/RegularGraph.html">Regular Graph</a> %F A241839 a(n) = A001349(n) - A005177(n). - _Andrew Howroyd_, Nov 04 2017 %t A241839 A005177 = {1, 1, 1, 1, 2, 2, 5, 4, 17, 22, 167, 539, 18979, 389436, 50314796, 2942198440, 1698517036411}; %t A241839 terms = Length[A005177] - 1; %t A241839 mob[m_, n_] := If[Mod[m, n] == 0, MoebiusMu[m/n], 0]; %t A241839 EULERi[b_] := Module[{a, c, i, d}, c = {}; For[i = 1, i <= Length[b], i++, c = Append[c, i*b[[i]] - Sum[c[[d]]*b[[i - d]], {d, 1, i - 1}]]]; a = {}; For[i = 1, i <= Length[b], i++, a = Append[a, (1/i)*Sum[mob[i, d]*c[[d]], {d, 1, i}]]]; Return[a]]; %t A241839 permcount[v_] := Module[{m = 1, s = 0, k = 0, t}, For[i = 1, i <= Length[v], i++, t = v[[i]]; k = If[i > 1 && t == v[[i - 1]], k + 1, 1]; m *= t*k; s += t]; s!/m]; %t A241839 edges[v_] := Sum[GCD[v[[i]], v[[j]]], {i, 2, Length[v]}, {j, 1, i - 1}] + Total[Quotient[v, 2]]; %t A241839 a88[n_] := Module[{s = 0}, Do[s += permcount[p]*2^edges[p], {p, IntegerPartitions[n]}]; s/n!]; %t A241839 A001349 = Join[{1}, EULERi[Array[a88, terms]]]; %t A241839 Rest[A001349 - A005177] (* _Jean-François Alcover_, Feb 23 2019, after _Andrew Howroyd_ *) %Y A241839 Cf. A002851, A006820, A006822. %K A241839 nonn %O A241839 1,4 %A A241839 _Travis Hoppe_ and _Anna Petrone_, Apr 29 2014 %E A241839 a(11)-a(16) from _Andrew Howroyd_, Nov 04 2017 %E A241839 Terms a(17) and beyond from _Andrew Howroyd_, May 21 2020