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

 

Logo

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 60th year, we have over 367,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

Other ways to Give
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A135951 Central terms of triangle A135950, the matrix inverse of triangle A022166. 2
1, -3, 70, -11160, 12850368, -111842970624, 7558738517524480, -4024873276683363287040, 17013427111087951089139449856, -573105858480900876266937950612226048, 154142404695090288939416498797330749299097600 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
A022166 is the triangle of Gaussian binomial coefficients [n,k] for q = 2.
LINKS
MATHEMATICA
max = 20; M = Table[QBinomial[n, k, 2], {n, 0, max}, {k, 0, max}] // Inverse; Table[M[[n, (n+1)/2]], {n, 1, max+1, 2}] (* Jean-François Alcover, Apr 09 2016 *)
Table[(-1)^n 2^((n-1)n/2) QBinomial[2n, n, 2], {n, 0, 20}] (* Vladimir Reshetnikov, Sep 16 2016 *)
PROG
(PARI) a(n)=local(q=2, A=matrix(2*n+1, 2*n+1, n, k, if(n>=k, if(n==1 || k==1, 1, prod(j=n-k+1, n-1, 1-q^j)/prod(j=1, k-1, 1-q^j))))^-1); A[2*n+1, n+1]
CROSSREFS
Sequence in context: A277413 A210920 A140048 * A361254 A093245 A108231
KEYWORD
sign
AUTHOR
Paul D. Hanna, Dec 08 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 December 4 14:24 EST 2023. Contains 367563 sequences. (Running on oeis4.)