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!)
A214283 Smallest Euler characteristic of a downset on an n-dimensional cube. 8

%I #33 Jan 31 2024 15:55:03

%S 0,-1,-2,-3,-4,-10,-20,-35,-56,-126,-252,-462,-792,-1716,-3432,-6435,

%T -11440,-24310,-48620,-92378,-167960,-352716,-705432,-1352078,

%U -2496144,-5200300,-10400600,-20058300,-37442160,-77558760,-155117520,-300540195

%N Smallest Euler characteristic of a downset on an n-dimensional cube.

%C An m-downset is a set of subsets of 1..m such that if S is in the set, so are all subsets of S. The Euler characteristic of a downset is the number of sets in the downset with an even cardinality, minus the number with an odd cardinality.

%H Reinhard Zumkeller, <a href="/A214283/b214283.txt">Table of n, a(n) for n = 1..1000</a>

%H Terry Tao, <a href="http://mathoverflow.net/questions/101787/optimal-bounds-for-an-alternating-sum-on-a-downset">Optimal bounds for an alternating sum on a downset</a>, 2012.

%F a(n=2k) = -binomial(n-1,n/2) = -binomial(2k-1,k),

%F a(n=4k+3) = -binomial(n-1,(n-1)/2) = -binomial(4k+2,2k+1),

%F a(n=4k+1) = -binomial(n-1,(n+1)/2) = -binomial(4k,2k+1).

%F a(n) = A214282(n) - A001405(n). - _Reinhard Zumkeller_, Jul 14 2012

%F For n > 1: a(n) = - A007318(n-1, A004525(n)). - _Reinhard Zumkeller_, Jul 14 2012

%F a(n+1) = -A000108(n/2) * A212831(n). - _Paul Curtz_, Nov 04 2012

%t A212831[n_] := (1/4)*((-(1+(-1)^n))*(-1+(-1)^Floor[n/2]) - (-3+(-1)^n)*n); a[n_] := -CatalanNumber[Floor[(n-1)/2]]*A212831[n-1]; Table[a[n], {n, 1, 32}] (* _Jean-François Alcover_, Nov 06 2012, after _Paul Curtz_ *)

%o (PARI) a(n)=-binomial(n-1,if(n%2,if(n%4==3,n-1,n+1),n)/2) \\ _Charles R Greathouse IV_, Jul 10 2012

%o (Haskell)

%o a214283 1 = 0

%o a214283 n = - a007318 (n - 1) (a004525 n)

%o -- _Reinhard Zumkeller_, Jul 14 2012

%o (Python)

%o from math import comb

%o def A214283(n): return -comb(n-1,(n>>1)|(n&1)) # _Chai Wah Wu_, Jan 31 2024

%Y Cf. A000108, A001405, A004525, A007318, A212831, A214282.

%K sign

%O 1,3

%A _Terence Tao_, Jul 09 2012

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 March 29 00:26 EDT 2024. Contains 371264 sequences. (Running on oeis4.)