A121723 a(n) = A098916(n+2) + (1-n) * A067318(n).
0, 3, 22, 150, 1096, 8820, 78408, 767088, 8212608, 95657760, 1205438400, 16350871680, 237633108480, 3685053415680, 60748282022400, 1061014235904000, 19574489449267200, 380408796994867200, 7768172642717491200
Offset: 1
Keywords
Examples
a(3) = 22 because we can write 22 = A098916(3) + (1-3) * A067318(3) = 36 - 2*7.
Programs
-
Mathematica
f[n_] := n! (n - 1) HarmonicNumber[n]; Array[f, 19] (* Robert G. Wilson v, Sep 07 2011 *)
Formula
a(n) = n!*(n-1)*Sum_{i=1..n} (1/i).
Extensions
Definition corrected by Gary Detlefs, Sep 07 2011
Comments