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.

A308761 Number of perfect matchings in the graph C_{11} X C_{2n}.

Original entry on oeis.org

1956242, 643041038, 294554220578, 152849502772958, 83804387156528018, 47217865780262297342, 26990513247252188990402, 15550772782091243971206638, 8999393061535308152171682002, 5221063878050546380074377019392
Offset: 2

Views

Author

Sergey Perepechko, Jul 04 2019

Keywords

Comments

This sequence satisfies a recurrence relation of order 243.

Crossrefs

Programs

  • PARI
    default(realprecision, 120);
    a(n) = round(sqrt(prod(j=1, n, prod(k=1, 11, 4*sin((2*j-1)*Pi/(2*n))^2+4*sin((2*k-1)*Pi/11)^2)))); \\ Seiichi Manyama, Feb 14 2021

Formula

a(n) = sqrt( Product_{j=1..n} Product_{k=1..11} (4*sin((2*j-1)*Pi/(2*n))^2 + 4*sin((2*k-1)*Pi/11)^2) ). - Seiichi Manyama, Feb 14 2021