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

A195462
1!*2!*3!*...*n!*H(n); H(n) the n-th harmonic number.
1
1, 3, 22, 600, 78912, 60963840, 325173657600, 13743074967552000, 5190968541142056960000, 19502847300506769948672000000, 802654006697267902579055001600000000, 395082050396018659026474786525020160000000000
OFFSET
1,2
COMMENTS
Determinant of the n x n - Matrix A[i,j] with A[1,j]=1 (1<=j<=n) and A[i,j]=j^i (i>1, 1<=j<=n) [L. Theisinger].
REFERENCES
L. Theisinger, Bemerkung über die harmonische Reihe. Monatshefte für Mathematik und Physik XXVI. Jahrgang (1915), 132-134.
LINKS
FORMULA
a(n) = A000178(n)*A001008(n)/A002805(n).
EXAMPLE
a(4) = 1!*2!*3!*4!*H(4) = 1*2*6*24*(25/12) = 600.
MAPLE
a:= n-> mul(j^(n-j+1), j=2..n) * add(1/k, k=1..n):
seq(a(n), n=1..15); # Alois P. Heinz, Sep 21 2011
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Franz Vrabec, Sep 21 2011
STATUS
approved