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!)
A130812 If X_1,...,X_n is a partition of a 2n-set X into 2-blocks then a(n) is equal to the number of 6-subsets of X containing none of X_i, (i=1,...n). 3
64, 448, 1792, 5376, 13440, 29568, 59136, 109824, 192192, 320320, 512512, 792064, 1188096, 1736448, 2480640, 3472896, 4775232, 6460608, 8614144, 11334400, 14734720, 18944640, 24111360, 30401280, 38001600, 47121984, 57996288, 70884352, 86073856, 103882240 (list; graph; refs; listen; history; text; internal format)
OFFSET
6,1
COMMENTS
Number of n permutations (n>=6) of 3 objects u,v,z, with repetition allowed, containing n-6 u's. Example: if n=6 then n-6 =(0) zero u, a(1)=64. - Zerinvary Lajos, Aug 05 2008
a(n) is the number of 5-dimensional elements in an n-cross polytope where n>=6. - Patrick J. McNab, Jul 06 2015
LINKS
Eric Weisstein's World of Mathematics, Cross Polytope
FORMULA
a(n) = binomial(2*n,6) + binomial(n,2)*binomial(2*n-4,2) - n*binomial(2*n-2,4) - binomial(n,3).
a(n) = C(n,n-6)*2^6, n>=6. - Zerinvary Lajos, Dec 07 2007
G.f.: 64*x^6/(1-x)^7. - Colin Barker, Mar 20 2012
MAPLE
a:=n->binomial(2*n, 6)+binomial(n, 2)*binomial(2*n-4, 2)-n*binomial(2*n-2, 4)-binomial(n, 3);
seq(binomial(n, n-6)*2^6, n=6..32); # Zerinvary Lajos, Dec 07 2007
seq(binomial(n+5, 6)*2^6, n=1..22); # Zerinvary Lajos, Aug 05 2008
MATHEMATICA
CoefficientList[Series[64/(1-x)^7, {x, 0, 30}], x] (* Vincenzo Librandi, Mar 21 2012 *)
PROG
(Magma) [Binomial(2*n, 6)+Binomial(n, 2)*Binomial(2*n-4, 2)- n*Binomial(2*n-2, 4)-Binomial(n, 3): n in [6..40]]; // Vincenzo Librandi, Jul 09 2015
CROSSREFS
Sequence in context: A188821 A181210 A092211 * A187518 A221070 A297844
KEYWORD
nonn,easy
AUTHOR
Milan Janjic, Jul 16 2007
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 20 06:53 EDT 2024. Contains 371799 sequences. (Running on oeis4.)