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

A096348
a(n)=M(n,2)/M(n,1)^2 (see comment).
0
1, 1, 7, 299, 75489, 111654831, 965748455463, 48881464214720003, 14501604902479448419313, 25264056045683085316538557915, 258965250751022100651152205229358175
OFFSET
0,3
COMMENTS
M(n,p)= determinant of the n X n matrix m(i,j)={prod(k=1,i,k+j)}^p. Terms are always odd integers.
PROG
(PARI) M(n, p)=matdet(matrix(n, n, i, j, prod(k=1, i, k+j)^p)); a(n)=M(n, 2)/M(n, 1)^2;
CROSSREFS
Cf. A096313.
Sequence in context: A041851 A082168 A362658 * A281435 A015005 A209806
KEYWORD
nonn
AUTHOR
Benoit Cloitre, Jun 29 2004
STATUS
approved