close
login
A079103
a(n) = Catalan(n)^(2*n-2).
5
1, 1, 4, 625, 7529536, 9682651996416, 1605976966052654874624, 38858631894268190306056236008241, 149521802722388792654037601564900000000000000, 97507780747332761768395977098452480878573838263199129993216, 11316329577423677140600642130598798092495455542306819767463118769921915355136
OFFSET
0,3
COMMENTS
For n >= 3, the number of permutations of length n*(2*n-1) in which all monotone subsequences of length n+1 are descending and the number of them is minimal.
LINKS
Joseph Myers, The minimum number of monotone subsequences, Electronic J. Combin. 9(2) (2002), #R4.
Joseph Myers, The list for n=3
MAPLE
a:= n-> (binomial(2*n, n)/(n+1))^(2*n-2):
seq(a(n), n=0..10); # Alois P. Heinz, Nov 08 2025
MATHEMATICA
Table[CatalanNumber[n]^(2n-2), {n, 10}] (* Harvey P. Dale, Oct 24 2011 *)
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Joseph Myers, Dec 23 2002
EXTENSIONS
a(9) from Harvey P. Dale, Oct 24 2011
a(10) from Michel Marcus, Aug 28 2025
a(0)=1 prepended by Alois P. Heinz, Nov 08 2025
STATUS
approved