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 A166891 #2 Mar 30 2012 18:37:18 %S A166891 1,2,9,78,1038,18968,443595,12681960,429244197,16801151910, %T A166891 746998729887,37200237947376,2051666003699226,124156748403386646, %U A166891 8180285024067867345,582970677419310149580,44684461723038752605932 %N A166891 Column 1 of triangle A166890. %C A166891 Triangle A166890 transforms diagonals in the triangle A166888 of coefficients in the successive iterations of x*(1+x)^2. %o A166891 (PARI) {a(n)=local(F=x, M, N, P, m=n); M=matrix(m+2, m+2, r, c, F=x; for(i=1, r+c-2, F=subst(F, x, x+2*x^2+x^3+x*O(x^(m+2)))); polcoeff(F, c)); N=matrix(m+1, m+1, r, c, M[r, c]); P=matrix(m+1, m+1, r, c, M[r+1, c]); (P~*N~^-1)[n, 1]} %Y A166891 Cf. A166890, A166892, A166893. %K A166891 nonn %O A166891 1,2 %A A166891 _Paul D. Hanna_, Nov 22 2009