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 A006025 M3160 #31 Aug 16 2019 15:13:20 %S A006025 1,1,3,54,3750,1009680,1058347920,4375678520640,71934792452208000, %T A006025 4719774805970453006400,1237727595442264073683462080, %U A006025 1298006134163762816201615178698880,5444432200219729912412940250057668378240 %N A006025 Number of labeled mating digraphs with n nodes. %D A006025 N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence). %H A006025 Andrew Howroyd, <a href="/A006025/b006025.txt">Table of n, a(n) for n = 0..50</a> %H A006025 R. C. Read, <a href="https://oeis.org/A006023/a006023.pdf"> The enumeration of mating-type graphs</a>, Report CORR 89-38, Dept. Combinatorics and Optimization, Univ. Waterloo, 1989. %F A006025 a(n) = Sum_{k=0..n} Stirling1(n, k)*2^(k^2-k). - _Vladeta Jovovic_, Feb 11 2003 %F A006025 E.g.f.: Sum_{n>=0} 2^(n*(n-1))*log(1+x)^n/n!. - _Paul D. Hanna_, May 20 2009 %t A006025 a[0] = 1; a[n_] := Sum[StirlingS1[n , k]*2^(k^2 - k), {k, 0, n}]; %t A006025 Table[a[n], {n, 0, 12}] (* _Jean-François Alcover_, Aug 16 2019 *) %o A006025 (PARI) a(n)=n!*polcoeff(sum(k=0,n,2^(k*(k-1))*log(1+x+x*O(x^n))^k/k!),n) \\ _Paul D. Hanna_, May 20 2009 %Y A006025 Cf. A006024. %K A006025 nonn %O A006025 0,3 %A A006025 _Simon Plouffe_ %E A006025 More terms from _Vladeta Jovovic_, Feb 11 2003 %E A006025 a(0)=1 prepended by _Andrew Howroyd_, Sep 09 2018