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 A120016 #5 Aug 24 2017 22:41:48 %S A120016 1,1,3,15,106,982,11383,159595,2636590,50278058,1088631886, %T A120016 26409797526,710034913212,20963748887980,674521750652735, %U A120016 23497037813799795,881180319357526102,35400836754598975554,1516991897621421273210 %N A120016 a(n) = A120014(n)/n = coefficient of x^n, divided by n, in the n-th iteration of the g.f. of A120009 for n>=1. %F A120016 a(n) = [x^n] (x/n)*((1-n+n^2) - n^2*(n+1)*x - n*(1-(n+2)*x)*C(x) )/(1-n+n^2*x)^2, where C(x) = (1-sqrt(1-4*x))/(2*x) is the Catalan function (A000108). %o A120016 (PARI) {a(n)=local(k=n,x=X+X^3*O(X^n));(1/n)*polcoeff( x*((1-k+k^2)-k^2*(k+1)*x-k*(1-(k+2)*x)*(1-sqrt(1-4*x))/2/x)/(1-k+k^2*x)^2,n,X)} %Y A120016 Cf. A120009, A120014, A120022; A000108. %K A120016 nonn %O A120016 1,3 %A A120016 _Paul D. Hanna_, Jun 07 2006