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!)
A086229 Determinant of n X n matrix M(i,j) = binomial(2i-1,j), (i,j) ranging from 1 to n. 2
1, 1, 3, 20, 280, 8064, 473088, 56229888, 13495173120, 6525665935360, 6348167821918208, 12410090985684467712, 48713743815806763925504, 383714412826047125074739200, 6062249191894029093752222515200 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = 2^(n*(n-3)/2)*binomial(2*n, n).
a(n) = 2^C(n,2)*Hypergeometric2F1((1-n)/2,-n/2;1;1).
MATHEMATICA
f[n_] := 2^(n (n - 3)/2) Binomial[2 n, n]; (* Or *)
f[n_] := 2^(n (n - 1)/2) Hypergeometric2F1[(1 - n)/2, -n/2, 1, 1]; Array[f, 15, 0] (* Robert G. Wilson v *)
PROG
(PARI) a(n) = matdet(matrix(n, n, i, j, binomial(2*i-1, j))); \\ Michel Marcus, Dec 12 2014
(PARI) for(n=0, 30, print1(2^(n*(n-3)/2)*binomial(2*n, n), ", ")) \\ G. C. Greubel, Jan 25 2018
(Magma) [2^(n*(n-3)/2)*Binomial(2*n, n): n in [0..30]]; // G. C. Greubel, Jan 25 2018
CROSSREFS
Sequence in context: A166232 A136551 A266812 * A369322 A130531 A240777
KEYWORD
nonn
AUTHOR
Benoit Cloitre, Aug 28 2003
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 19 12:14 EDT 2024. Contains 371792 sequences. (Running on oeis4.)