login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A047171 Number of nonempty subsets of {1,2,...,n} in which exactly 1/2 of the elements are <= (n-1)/2. 3
0, 0, 0, 2, 3, 9, 14, 34, 55, 125, 209, 461, 791, 1715, 3002, 6434, 11439, 24309, 43757, 92377, 167959, 352715, 646645, 1352077, 2496143, 5200299, 9657699, 20058299, 37442159, 77558759, 145422674, 300540194, 565722719, 1166803109, 2203961429, 4537567649 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
For n>=1 the number of standard Young tableaux with shapes corresponding to partitions into two distinct parts. - Joerg Arndt, Oct 25 2012
LINKS
FORMULA
a(n) = A037952(n) - 1. Proof by Ira Gessel: Write down the number of such subsets with k elements <= (n-1)/2 as a product of two binomial coefficients, then evaluate the sum using Vandermonde's theorem.
MAPLE
a:= n-> binomial(n, iquo(n-1, 2))-1:
seq(a(n), n=0..40); # Alois P. Heinz, Nov 17 2012
MATHEMATICA
a[n_] := Binomial[n, Floor[(n-1)/2]]-1; a[0] = 0; Table[a[n], {n, 0, 40}] (* Jean-François Alcover, Jul 03 2015 *)
PROG
(Magma) [0] cat [Binomial(n, Floor((n-1)/2))-1: n in [1..40]]: // Vincenzo Librandi, Jul 03 2015
CROSSREFS
Column k=2 of A219311. - Alois P. Heinz, Nov 17 2012
Sequence in context: A101067 A056645 A295857 * A094557 A222658 A227212
KEYWORD
nonn
AUTHOR
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 18 15:48 EDT 2024. Contains 371780 sequences. (Running on oeis4.)