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 A141763 #2 Mar 30 2012 18:37:11 %S A141763 1,1,4,23,175,1678,19579,270683,4342447,79498622,1638471038, %T A141763 37592670383,951214496814,26333793485772,792232525678756, %U A141763 25747819699179668,899388184082559576,33613386298645020835,1338749843351681925409 %N A141763 Column 3 of triangle A141760. %F A141763 G.f.: 1/(1-x) = Sum_{n>=0} a(n) * x^n/(1+x)^{(n+2)*(n+3)/2 - 3}. %F A141763 a(n) = 1 - Sum_{j=0..n-1} a(j) * (-1)^(n-j) * C((j+2)(j+3)/2 + n-j-4, n-j) for n>0, with a(0)=1. %o A141763 (PARI) {a(n)=if(n==0,1,1 - sum(j=0,n-1,a(j)*(-1)^(n-j)*binomial((j+2)*(j+3)/2-3+n-j-1,n-j)))} %Y A141763 Cf. A141760, A141761, A141762, A141764. %K A141763 nonn %O A141763 0,3 %A A141763 _Paul D. Hanna_, Jul 18 2008