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

A134366
a(n) = (n!)^(n-1).
10
1, 1, 2, 36, 13824, 207360000, 193491763200000, 16390160963076096000000, 173238200573946282828103680000000, 300679807141675805997423113304381849600000000
OFFSET
0,3
FORMULA
a(n) ~ exp(1/12 + n - n^2) * n^((n-1)*(2*n+1)/2) * (2*Pi)^((n-1)/2). - Vaclav Kotesovec, Oct 26 2017
MAPLE
a:=n->mul(n!/k, k=1..n): seq(a(n), n=0..9); # Zerinvary Lajos, Jan 22 2008
restart:with (combinat):a:=n->mul(stirling1(n, 1), j=3..n): seq(a(n), n=1..10); # Zerinvary Lajos, Jan 01 2009
MATHEMATICA
Table[(n!)^(n - 1), {n, 0, 10}]
PROG
(PARI) a(n) = (n!)^(n-1); \\ Michel Marcus, Dec 23 2015
KEYWORD
nonn
AUTHOR
Artur Jasinski, Oct 22 2007
EXTENSIONS
Offset corrected to 0 by Michel Marcus, Dec 23 2015
STATUS
approved