login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A101484
Row sums of triangular matrix A101479, in which row n equals row (n-1) of A101479^(n-1) followed by '1'.
1
1, 2, 3, 7, 33, 285, 3648, 61306, 1270440, 31244205, 888288960, 28640745684, 1032065614715, 41087944243649, 1790413981105727, 84737880414848784, 4327877295100145382, 237218770042549151701, 13887772416031152573506
OFFSET
0,2
PROG
(PARI) {a(n)=local(A=Mat(1), B); for(m=1, n+1, B=matrix(m, m); for(i=1, m, for(j=1, i, if(j==i, B[i, j]=1, B[i, j]=(A^(i-2))[i-1, j]); )); A=B); return(sum(k=1, n+1, A[n+1, k]))}
CROSSREFS
Sequence in context: A161471 A057677 A032148 * A004026 A135907 A027624
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jan 21 2005
STATUS
approved