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.

A281583 Number of perfect matchings in the graph C_9 X C_{2n}.

Original entry on oeis.org

140450, 16091936, 2415542018, 400448833106, 69206906601800, 12190695635108354, 2167175327735637122, 387018647188487143424, 69272289588070930561250, 12413316310203106546620386, 2225719417041514241075539592, 399192630631160441128470998546
Offset: 2

Views

Author

Sergey Perepechko, Jan 25 2017

Keywords

Comments

For odd values of m the order of recurrence relation for the number of perfect matchings in C_{m} X C_{2n} graph does not exceed 3^floor(m/2).

Crossrefs

Programs

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

Formula

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