cp's OEIS Frontend

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.

A141762 Column 2 of triangle A141760.

This page as a plain text file.
%I A141762 #2 Mar 30 2012 18:37:11
%S A141762 1,1,3,13,77,594,5737,67216,931584,14968423,274312910,5657512947,
%T A141762 129866646887,3287152235160,91025011377693,2738909774003719,
%U A141762 89027345548731677,3110096516555803509,116244489639439112395
%N A141762 Column 2 of triangle A141760.
%F A141762 G.f.: 1/(1-x) = Sum_{n>=0} a(n) * x^n/(1+x)^[(n+1)*(n+2)/2 - 1].
%F A141762 a(n) = 1 - Sum_{j=0..n-1} a(j) * (-1)^(n-j) * C((j+1)(j+2)/2 + n-j-2, n-j) for n>0, with a(0)=1.
%o A141762 (PARI) {a(n)=if(n==0,1,1 - sum(j=0,n-1,a(j)*(-1)^(n-j)*binomial((j+1)*(j+2)/2-1+n-j-1,n-j)))}
%Y A141762 Cf. A141760, A141761, A141763, A141764.
%K A141762 nonn
%O A141762 0,3
%A A141762 _Paul D. Hanna_, Jul 18 2008