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.

A007219 Number of golygons of order 8n (or serial isogons of order 8n).

Original entry on oeis.org

1, 28, 2108, 227322, 30276740, 4541771016, 739092675672, 127674038970623, 23085759901610016, 4327973308197103600, 835531767841066680300, 165266721954751746697155, 33364181616540879268092840
Offset: 1

Views

Author

Keywords

Comments

A golygon of order N is a closed path along the streets of the Manhattan grid with successive edge lengths of 1,2,3,...,N (returning to the starting point after the edge of length N), and which makes a 90-degree turn (left or right) after each edge.
It is known that the order N must be a multiple of 8.

References

  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
  • I. Vardi, Computational Recreations in Mathematica. Addison-Wesley, Redwood City, CA, 1991, p. 92.

Crossrefs

See also A006718.

Programs

  • Mathematica
    p1[n_] := Product[x^k + 1, {k, 1, n - 1, 2}] // Expand; p2[n_] := Product[x^k + 1, {k, 1, n/2}] // Expand; c[n_] := Coefficient[p1[n], x, n^2/8] * Coefficient[p2[n], x, n (n/2 + 1)/8]; a[n_] := c[8*n]/4; Table[a[n], {n, 1, 13}] (* Jean-François Alcover, Jul 24 2013, after Eric W. Weisstein *)

Formula

a(n) = A006718(n)/4. - Charles R Greathouse IV, Apr 29 2012
a(n) ~ 3*2^(8*n-6)/(Pi*n^2*(4*n+1)). - Vaclav Kotesovec, Dec 09 2013

Extensions

Two more terms from N. J. A. Sloane (from the reference), May 23 2005