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.

A107883 Column 3 of triangle A107880.

This page as a plain text file.
%I A107883 #5 Nov 26 2016 18:05:31
%S A107883 1,2,9,61,550,6195,83837,1326923,24078588,493309850,11271757335,
%T A107883 284379843234,7856320956198,235986714918110,7660827258318780,
%U A107883 267365373971139600,9985779421324740445,397508459931685273305
%N A107883 Column 3 of triangle A107880.
%F A107883 G.f.: 1 = Sum_{k>=0} a(k)*x^k*(1-x)^((k+2)*(k+3)/2 - 1).
%e A107883 1 = 1*(1-x)^2 + 2*x*(1-x)^5 + 9*x^2*(1-x)^9 +
%e A107883 61*x^3*(1-x)^14 + 550*x^4*(1-x)^20 + 6195*x^5*(1-x)^27 +...
%t A107883 a[ n_, k_: 0, j_: 2] := If[n < 1, Boole[n >= 0], a[ n, k, j] = Sum[ a[ n - 1, i, j + 1], {i, k + j}]]; (* _Michael Somos_, Nov 26 2016 *)
%o A107883 (PARI) {a(n)=polcoeff(1-sum(k=0,n-1,a(k)*x^k*(1-x+x*O(x^n))^((k+2)*(k+3)/2-1)),n)}
%Y A107883 Cf. A107880, A107881, A107882.
%K A107883 nonn
%O A107883 0,2
%A A107883 _Paul D. Hanna_, Jun 04 2005