A047833 Erroneous version of A002499.
1, 3, 10, 70, 708, 15248, 543520
Offset: 1
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.
Triangle begins: 1; 1; 1,1,1; 1,1,2,2,2,1,1; 1,1,3,5,9,10,12,10,9,5,3,1,1; 1,1,3,6,15,24,41,57,77,84,90,84,77,57,41,24,15,6,3,1,1; ....
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} edges(v, t) = {prod(i=2, #v, prod(j=1, i-1, my(c=gcd(v[i], v[j])*if(v[i]*v[j]%2==0, 2, 1)); t(2*v[i]*v[j]/c)^c)) * prod(i=1, #v, my(c=v[i]); if(c%2, t(2*c)^(c\2), t(c)^(c-1-c%4/2)*t(c/2)^(c%4)))} Row(n) = {my(s=0); forpart(p=n, s+=permcount(p)*edges(p, i->1+x^i)); Vecrev(s)/n!} { for(n=0, 5, print(Row(n))) } \\ Andrew Howroyd, Apr 19 2020