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 A304186 #22 May 10 2018 23:05:59 %S A304186 1,3,6,24,189,2199,33495,625743,13778469,348258723,9916111584, %T A304186 313642702743,10901017499472,412730651160567,16902257604014685, %U A304186 744247858158013245,35058132248539742325,1758994171367292095805,93646661943861501833100,5272500660870261306912750 %N A304186 G.f. A(x) satisfies: 0 = [x^n] (1+x)^((n+1)*(n+2)/2) / A(x) for n>0. %F A304186 [x^n] (1+x)^((n+2)*(n+3)/2) / A(x) = A101483(n+1) = A101479(n+3,2) for n>=0. %F A304186 [x^n] (1+x)^((n+3)*(n+4)/2) / A(x) = Sum_{k=0..n} A101479(n+4,k+3) * A101479(k+3,2) for n>=0. %e A304186 G.f.: A(x) = 1 + 3*x + 6*x^2 + 24*x^3 + 189*x^4 + 2199*x^5 + 33495*x^6 + 625743*x^7 + 13778469*x^8 + 348258723*x^9 + 9916111584*x^10 + ... %e A304186 ILLUSTRATION OF DEFINITION. %e A304186 The table of coefficients of x^k in (1+x)^((n+1)*(n+2)/2) / A(x) begins: %e A304186 n=0: [1, -2, 0, -12, -105, -1434, -23877, -473730, -10881882, ...]; %e A304186 n=1: [1, 0, -3, -14, -129, -1656, -26850, -522918, -11853219, ...]; %e A304186 n=2: [1, 3, 0, -22, -180, -2088, -32219, -608565, -13504179, ...]; %e A304186 n=3: [1, 7, 18, 0, -255, -2937, -41739, -750711, -16140285, ...]; %e A304186 n=4: [1, 12, 63, 170, 0, -3996, -58877, -991308, -20341875, ...]; %e A304186 n=5: [1, 18, 150, 748, 2220, 0, -78435, -1401570, -27251715, ...]; %e A304186 n=6: [1, 25, 297, 2211, 11271, 37149, 0, -1843458, -38615364, ...]; %e A304186 n=7: [1, 33, 525, 5343, 38745, 207663, 758814, 0, -50361381, ...]; %e A304186 n=8: [1, 42, 858, 11340, 108630, 797100, 4541805, 18301950, 0, ...]; ... %e A304186 in which the main diagonal is all zeros after the initial term, illustrating that 0 = [x^n] (1+x)^((n+1)*(n+2)/2) / A(x) for n>0. %e A304186 RELATED SEQUENCES. %e A304186 The secondary diagonal in the above table that begins %e A304186 [1, 3, 18, 170, 2220, 37149, 758814, 18301950, 508907970, ...] %e A304186 yields A101483, column 2 of triangle A101479. %e A304186 Related triangular matrix T = A101479 begins: %e A304186 1; %e A304186 1, 1; %e A304186 1, 1, 1; %e A304186 3, 2, 1, 1; %e A304186 19, 9, 3, 1, 1; %e A304186 191, 70, 18, 4, 1, 1; %e A304186 2646, 795, 170, 30, 5, 1, 1; %e A304186 46737, 11961, 2220, 335, 45, 6, 1, 1; %e A304186 1003150, 224504, 37149, 4984, 581, 63, 7, 1, 1; ... %e A304186 in which row n equals row (n-1) of T^(n-1) followed by '1' for n>0. %o A304186 (PARI) {a(n) = my(A=[1]); for(i=1, n, A=concat(A, 0); m=#A; A[m] = Vec( (1+x +x*O(x^m))^(m*(m+1)/2)/Ser(A) )[m] );A[n+1]} %o A304186 for(n=0,30, print1(a(n),", ")) %Y A304186 Cf. A101481, A304184, A304185, A304187, A101479. %K A304186 nonn %O A304186 0,2 %A A304186 _Paul D. Hanna_, May 08 2018