cp's OEIS Frontend

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.

A052114 Number of self-complementary directed 4-multigraphs with loops on n nodes.

This page as a plain text file.
%I A052114 #9 Sep 17 2018 15:41:05
%S A052114 1,13,313,52891,30554141,89011081055,1243751028948305,
%T A052114 70334570607769968970,23735285427941643311618345,
%U A052114 27755772992017058140287194221448,226477787759401129853705684271059207073,5698414152656591747538959168064394745850705494
%N A052114 Number of self-complementary directed 4-multigraphs with loops on n nodes.
%H A052114 Andrew Howroyd, <a href="/A052114/b052114.txt">Table of n, a(n) for n = 1..50</a>
%o A052114 (PARI)
%o A052114 permcount(v) = {my(m=1,s=0,k=0,t); for(i=1,#v,t=v[i]; k=if(i>1&&t==v[i-1],k+1,1); m*=t*k;s+=t); s!/m}
%o A052114 edges(v) = {2*sum(i=2, #v, sum(j=1, i-1, if(v[i]*v[j]%2==0, gcd(v[i],v[j])))) + sum(i=1, #v, if(v[i]%2==0, v[i]))}
%o A052114 a(n) = {my(s=0); forpart(p=n, s+=permcount(p)*5^edges(p)); s/n!} \\ _Andrew Howroyd_, Sep 17 2018
%Y A052114 Cf. A052113, A053516, A053588.
%K A052114 nonn
%O A052114 1,2
%A A052114 _Vladeta Jovovic_, Jan 21 2000
%E A052114 Terms a(11) and beyond from _Andrew Howroyd_, Sep 17 2018