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.

A006718 Number of golygons of length 8n.

This page as a plain text file.
%I A006718 M3707 #42 Feb 16 2025 08:32:30
%S A006718 1,4,112,8432,909288,121106960,18167084064,2956370702688,
%T A006718 510696155882492,92343039606440064,17311893232788414400,
%U A006718 3342127071364266721200,661066887819006986788620,133456726466163517072371360
%N A006718 Number of golygons of length 8n.
%C A006718 A007219 is the main entry for golygons.
%D A006718 N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
%D A006718 I. Vardi, Computational Recreations in Mathematica. Addison-Wesley, Redwood City, CA, 1991, p. 92.
%H A006718 Seiichi Manyama, <a href="/A006718/b006718.txt">Table of n, a(n) for n = 0..200</a>
%H A006718 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/Golygon.html">Golygon</a>
%F A006718 a(n) = 4 * A007219(n) for n > 0. - _Charles R Greathouse IV_, Apr 29 2012
%F A006718 a(n) = A060468(n) * A292476(2*n) = A063865(4*n) * A292476(2*n). - _Seiichi Manyama_, Sep 18 2017
%t A006718 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]; Table[a[n], {n, 0, 11}] (* _Jean-François Alcover_, Jul 24 2013, after _Eric W. Weisstein_ *)
%Y A006718 Cf. A060468, A063865, A292476.
%Y A006718 See A007219 for much more information about golygons.
%K A006718 nonn
%O A006718 0,2
%A A006718 _N. J. A. Sloane_
%E A006718 a(0) = 1 prepended by _Seiichi Manyama_, Sep 18 2017