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 A359718 #5 Jan 18 2023 14:54:27 %S A359718 1,20,170,970,4410,17172,59545,188700,556085,1542640,4065868,10253720, %T A359718 24880705,58351000,132750390,293867786,634623035,1339924290, %U A359718 2771178885,5623152080,11211087225,21989506510,42478375740,80897833810,152022961870,282119268256,517394696690 %N A359718 Column 3 of triangle A359670; a(n) = A359670(n+3,3) for n >= 0. %C A359718 The g.f. G(x,y) of triangle A359670 satisfies: G(x,y) = 1/[Sum_{n=-oo..+oo} (-1)^n * (x*y*G(x,y) + x^n)^n]. %o A359718 (PARI) {a(n) = my(A=1); for(i=1,n+3, %o A359718 A = 1/sum(m=-#A,#A, (-1)^m * (x*y*A + x^m + x*O(x^(n+3)) )^m ) ); %o A359718 polcoeff( polcoeff( A,n+3,x),3,y)} %o A359718 for(n=0,30, print1( a(n),", ")) %o A359718 (PARI) {a(n) = my(A=[1]); for(i=1,n+3, A = concat(A,0); %o A359718 A[#A] = polcoeff(-y + sum(m=-#A,#A, (-1)^m * x^m * (y*Ser(A) + x^(m-1))^(m+1) )/(-y),#A-1,x) ); polcoeff( A[n+4],3,y)} %o A359718 for(n=0,30, print1(a(n),", ")) %Y A359718 Cf. A359670. %K A359718 nonn %O A359718 0,2 %A A359718 _Paul D. Hanna_, Jan 17 2023