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

A227402
Number of unimodal functions f:[n]->[n^2].
4
1, 1, 16, 525, 24616, 1505205, 113772114, 10253539205, 1073769343504, 128165285630637, 17177527372642000, 2554518029816653175, 417444979902876203656, 74358489250362053975095, 14340040595865309129453250, 2976703788777987140216622005
OFFSET
0,3
LINKS
FORMULA
a(n) = Sum_{j=0..n^2-1} C(n+2*j-1,2*j), a(0) = 1.
a(n) = A071921(n,n^2).
a(n) ~ 2^(n-3/2) * n^(n-1/2) * exp(n+1/4) / sqrt(Pi). - Vaclav Kotesovec, Aug 29 2014
MAPLE
a:= n-> `if`(n=0, 1, add(binomial(n+2*j-1, 2*j), j=0..n^2-1)):
seq(a(n), n=0..20);
MATHEMATICA
Flatten[{1, Table[Sum[Binomial[n+2*j-1, 2*j], {j, 0, n^2-1}], {n, 1, 20}]}] (* Vaclav Kotesovec, Aug 29 2014 *)
CROSSREFS
Main diagonal of A226031.
Sequence in context: A099772 A041483 A041480 * A371722 A263907 A222099
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Sep 20 2013
STATUS
approved