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 A185259 #40 May 31 2023 09:51:00 %S A185259 1,1,12,8,1,72,528,704,180,1,324,8760,53792,98124,56160,8064,1,1344, %T A185259 103040,1759520,9936360,21676144,19083456,6356160,604800,1,5436, %U A185259 1054056,41312704,539233128,2901894144,7118351104,8247838464,4418632656,988952832,68428800,1,21816,10106736,823376896,21574613676,235937470944,1230387808384,3281254260864,4608240745104,3390175943424,1247151098880,204083712000,10897286400 %N A185259 Irregular triangle read by rows: coefficients in order of decreasing exponents of polynomials P_g(x) related to Hultman numbers. %C A185259 Row n contains 2*n-1 terms. %C A185259 Evaluating the polynomials at 1 gives A035319. %H A185259 Gheorghe Coserea, <a href="/A185259/b185259.txt">Rows n=1..101, flattened</a> %H A185259 Nikita Alexeev and Peter Zograf, <a href="http://arxiv.org/abs/1111.3061">Hultman numbers, polygon gluings and matrix integrals</a>, arXiv preprint arXiv:1111.3061 [math.PR], 2011. %H A185259 Robert Coquereaux and Jean-Bernard Zuber, <a href="https://arxiv.org/abs/2305.01100">Counting partitions by genus. II. A compendium of results</a>, arXiv:2305.01100 [math.CO], 2023. See p. 9. %e A185259 Triangle begins: %e A185259 [1] 1 %e A185259 [2] 1 12 8 %e A185259 [3] 1 72 528 704 180 %e A185259 [4] 1 324 8760 53792 98124 56160 8064 %e A185259 [5] 1 1344 103040 1759520 9936360 21676144 19083456 6356160 604800 %e A185259 [6] ... %t A185259 P[n_, x_] := (f = (1-x)^(4n+1); s = Sum[-StirlingS1[2n+2+k, k+1]/ Binomial[2n+2+k, 2] x^k, {k, 0, 2n-2}]; f s + O[x]^(2n-1) // Normal); %t A185259 row[n_] := CoefficientList[P[n, x], x] // Reverse; %t A185259 Array[row, 7] // Flatten (* _Jean-François Alcover_, Sep 05 2018, after _Gheorghe Coserea_ *) %o A185259 (PARI) %o A185259 P(n, v='x) = { %o A185259 my(x='x+O('x^(2*n-1)), f=(1-x)^(4*n+1), %o A185259 s=sum(k=0, 2*n-2, -stirling(2*n+2+k, k+1, 1)/binomial(2*n+2+k,2)*x^k)); %o A185259 subst(Pol(f*s, 'x), 'x, v); %o A185259 }; %o A185259 concat(vector(7, n, Vec(P(n)))) %o A185259 \\ test: N=50; vector(N, n, P(n,1)) == vector(N, n, (4*n)!/((2*n+1)!*4^n)) %o A185259 \\ _Gheorghe Coserea_, Jan 30 2018 %Y A185259 Cf. A035319, A185263. %K A185259 nonn,tabf %O A185259 1,3 %A A185259 _N. J. A. Sloane_, Jan 21 2012 %E A185259 More terms from _Gheorghe Coserea_, Jan 30 2018