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.

A220298 Number of ways to cut a 5 X n rectangle into rectangles with integer sides.

Original entry on oeis.org

1, 16, 650, 31484, 1613060, 84231996, 4427635270, 233276449488, 12300505521832, 648782777031100, 34223109012944482, 1805323555104984956, 95234889270955121716, 5023877415526067785580, 265022449692240368203598, 13980623266954069411358904
Offset: 0

Views

Author

Alois P. Heinz, Dec 10 2012

Keywords

Examples

			a(1) = 16:
  ._. ._. ._. ._. ._. ._. ._. ._. ._. ._. ._. ._. ._. ._. ._. ._.
  | | |_| | | | | | | |_| |_| |_| | | | | | | |_| |_| |_| | | |_|
  | | | | |_| | | | | |_| | | | | |_| |_| | | |_| |_| | | |_| |_|
  | | | | | | |_| | | | | |_| | | |_| | | |_| |_| | | |_| |_| |_|
  | | | | | | | | |_| | | | | |_| | | |_| |_| | | |_| |_| |_| |_|
  |_| |_| |_| |_| |_| |_| |_| |_| |_| |_| |_| |_| |_| |_| |_| |_|
.
		

Crossrefs

Column m=5 of A116694.

Programs

  • Maple
    gf:= (39672144*x^10 -110891556*x^9 +124284414*x^8 -74544838*x^7 +26669637*x^6 -5961522*x^5 +841659*x^4 -73608*x^3 +3769*x^2 -100*x+1)/
    (135762480*x^10 -326041524*x^9 +320708934*x^8 -170972730*x^7 +54776249*x^6 -11002298*x^5 +1395665*x^4 -109292*x^3 +4975*x^2 -116*x +1):
    a:= n-> coeff(series(gf, x, n+1), x, n):
    seq(a(n), n=0..20);

Formula

G.f.: see Maple program.