cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

User: Christine Bessenrodt

Christine Bessenrodt's wiki page.

Christine Bessenrodt has authored 1 sequences.

A003827 'Core' alternating sign n X n matrices, i.e., those that are not 'blown up' from a smaller matrix by inserting row i, column j with a_ij = 1 and all other entries in that row and column equal to 0.

Original entry on oeis.org

1, 2, 59, 1292, 53862, 3615208, 392961340, 68986099580, 19595297946515, 9048133666290540, 6832278662513786160, 8489106538840284343800, 17456177529017536829265000, 59700294731704834466701403040, 340945552945616104095546549396336, 3261527521637774696821080128931389072
Offset: 3

Keywords

References

  • R. K. Guy, Unsolved Problems in Number Theory, D1.

Crossrefs

Programs

  • PARI
    \\ rather inefficient, should use memoization
    b(n) = prod(i=0, n-1, (3*i+1)!/(n+i)! );
    a(n) = b(n) - n! - sum(k=1, n-3, binomial(n,k)^2 * k! *a(n-k) );
    vector(20,n,a(n)) \\ Joerg Arndt, Oct 03 2015

Formula

Let b(n) = Product_{i=0..n-1} (3*i+1)!/(n+i)! be the number of alternating sign n X n matrices (i.e., sequence A005130), and a(n) the number of core alternating sign n X n matrices considered here, with the sequence [1,2,59,...] starting at offset n=3. Then it is not hard to show that for n>3: a(n) = b(n) - n! - Sum_{k=1..n-3} binomial(n,k)^2 * k! *a(n-k). - Christine Bessenrodt, Oct 02 2015
a(n) ~ exp(1/36) * Pi^(1/3) * 2^(5/12 - 2*n^2) * 3^(-7/36 + 3*n^2/2) / (A^(1/3) * Gamma(1/3)^(2/3) * n^(5/36)), where A = A074962 is the Glaisher-Kinkelin constant. - Vaclav Kotesovec, Apr 25 2016

Extensions

Corrected and extended by Christine Bessenrodt, Oct 02 2015