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”).

A121425
Main diagonal of rectangular table A121424.
6
1, 2, 12, 118, 1605, 27816, 585046, 14459138, 410368743, 13146830110, 469123986529, 18447791712945, 792514583941223, 36925394368325295, 1854525584914459755, 99872579714406393286, 5740977285851988017769
OFFSET
0,2
COMMENTS
Also main diagonal of square array A136733.
FORMULA
a(n) = [A121412^(n+1)](n,0) for n>=0; i.e., (n+1)-th term of column 0 in matrix power A121412^(n+1).
PROG
(PARI) {a(n)=local(H=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]=(H^i)[i-1, j]); )); H=B); return((H^(n+1))[n+1, 1])}
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Aug 26 2006
EXTENSIONS
Edited by N. J. A. Sloane, Oct 30 2008 at the suggestion of R. J. Mathar
STATUS
approved