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 A301924 #12 Aug 27 2019 10:44:34 %S A301924 1,0,1,0,2,1,0,6,3,1,0,21,29,4,1,0,112,2101,150,5,1,0,853,7011181, %T A301924 7013164,1037,6,1,0,11117,1788775603301,29281354507753847, %U A301924 1788782615612,12338,7,1,0,261080,53304526022885278403,234431745534048893449761040648508,234431745534048922729326772799024,53304527811667884902,274659,8,1 %N A301924 Regular triangle where T(n,k) is the number of unlabeled k-uniform connected hypergraphs spanning n vertices. %F A301924 Column k is the inverse Euler transform of column k of A301922. - _Andrew Howroyd_, Aug 26 2019 %e A301924 Triangle begins: %e A301924 1 %e A301924 0 1 %e A301924 0 2 1 %e A301924 0 6 3 1 %e A301924 0 21 29 4 1 %e A301924 0 112 2101 150 5 1 %e A301924 0 853 7011181 7013164 1037 6 1 %e A301924 ... %e A301924 The T(4,2) = 6 hypergraphs: %e A301924 {{1,3},{2,4},{3,4}} %e A301924 {{1,4},{2,4},{3,4}} %e A301924 {{1,2},{1,3},{2,4},{3,4}} %e A301924 {{1,4},{2,3},{2,4},{3,4}} %e A301924 {{1,3},{1,4},{2,3},{2,4},{3,4}} %e A301924 {{1,2},{1,3},{1,4},{2,3},{2,4},{3,4}} %o A301924 (PARI) %o A301924 InvEulerT(v)={my(p=log(1+x*Ser(v))); dirdiv(vector(#v,n,polcoeff(p,n)), vector(#v,n,1/n))} %o A301924 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 A301924 rep(typ)={my(L=List(), k=0); for(i=1, #typ, k+=typ[i]; listput(L, k); while(#L<k, listput(L, #L))); Vec(L)} %o A301924 can(v, f)={my(d=1, u=v); while(d>0, u=vecsort(apply(f, u)); d=lex(u, v)); !d} %o A301924 Q(n, k, perm)={my(t=0); forsubset([n, k], v, t += can(Vec(v), t->perm[t])); t} %o A301924 U(n, k)={my(s=0); forpart(p=n, s += permcount(p)*2^Q(n, k, rep(p))); s/n!} %o A301924 A(n)={Mat(vector(n, k, InvEulerT(vector(n,i,U(i,k)-U(i-1,k)))~))} %o A301924 { my(T=A(8)); for(n=1, #T, print(T[n,1..n])) } \\ _Andrew Howroyd_, Aug 26 2019 %Y A301924 Row sums are A301920. %Y A301924 Columns k=2..3 are A001349(n > 1), A003190(n > 1). %Y A301924 Cf. A003465, A006129, A038041, A055621, A298422, A299353, A299354, A299471, A301481, A301922, A306017-A306021, A309858. %K A301924 nonn,tabl %O A301924 1,5 %A A301924 _Gus Wiseman_, Jun 19 2018 %E A301924 Terms a(16) and beyond from _Andrew Howroyd_, Aug 26 2019