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.

A185629 Column 0 of triangle A185628; also, equals row sums of triangle A185624.

This page as a plain text file.
%I A185629 #7 Mar 30 2012 18:37:26
%S A185629 1,3,6,16,60,305,1988,15951,153171,1722693,22296396,327270440,
%T A185629 5381716953,98134088419,1967105567802,43024511648982,1020235144731236,
%U A185629 26083065249549660,715430961891290714,20962974995245684878,653654392800091507791,21615444263990028093227
%N A185629 Column 0 of triangle A185628; also, equals row sums of triangle A185624.
%C A185629 Triangle A185628 equals the matrix cube of triangle R = A185620, which satisfies: R^3 - R^2 + I = R shifted left one column.
%o A185629 (PARI) {a(n)=local(A=Mat(1), B); for(m=1, n+1, B=A^3-A^2+A^0; A=matrix(m+1, m+1); for(i=1, m+1, for(j=1, i, if(i<2|j==i, A[i, j]=1, if(j==1, A[i, j]=1, A[i, j]=B[i-1, j-1]))))); return((A^3)[n+1, 1])}
%Y A185629 Cf. A185620, A185628, A185630, A185631.
%K A185629 nonn
%O A185629 0,2
%A A185629 _Paul D. Hanna_, Sep 07 2011