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.

A010569 Number of 2n-step self-avoiding closed paths on the 5-dimensional cubic lattice.

This page as a plain text file.
%I A010569 #22 Jun 25 2025 09:41:45
%S A010569 10,80,2160,82720,3737120,186303840,9945915840,558476528000,
%T A010569 32597366872320,1961752814181280,121020530395783040,
%U A010569 7620016712806580160
%N A010569 Number of 2n-step self-avoiding closed paths on the 5-dimensional cubic lattice.
%H A010569 Nathan Clisby, Richard Liang, and Gordon Slade, <a href="https://doi.org/10.1088/1751-8113/40/36/003">Self-avoiding walk enumeration via the lace expansion</a>, J. Phys. A: Math. Theor. 40 (2007), 10973-11017. Table A7 "Enumeration results for d = 5", column p_n, row 2*n gives a(n)/(4*n) for n>1.
%H A010569 Nathan Clisby, Richard Liang, and Gordon Slade, <a href="https://personal.math.ubc.ca/~slade/lacecounts/">Self-avoiding walk enumeration via the lace expansion</a>. [Tables in machine-readable format on separate pages.]
%H A010569 M. E. Fisher and D. S. Gaunt, <a href="https://doi.org/10.1103/PhysRev.133.A224">Ising model and self-avoiding walks on hypercubical lattices and high density expansions</a>, Phys. Rev. 133 (1964) A224-A239.
%o A010569 (Python)
%o A010569 def A010569(n): # For illustration - becomes slow for n >= 5
%o A010569     if not hasattr(A:=A010569, 'r'):
%o A010569        A.terms = [10]; A.r = 0,1,2,3,4; z = 0,0,0,0; I = (0,*z), (1,*z)
%o A010569        A.paths = (*I,(2,*z)), (*I,(1,1,*z[1:])); A.weights = 10, 80
%o A010569     while n > len(A.terms):
%o A010569         for L in (0, 1):
%o A010569             np = []; nw=[];cycles = 0
%o A010569             for path,weight in zip(A.paths,A.weights):
%o A010569                 end = path[-1]
%o A010569                 for i in A.r:
%o A010569                    for s in (1, -1):
%o A010569                       t = tuple(end[j]if j!=i else end[j]+s for j in A.r)
%o A010569                       if t not in path: np+=[path+(t,)]; nw+=[weight]
%o A010569                       elif L and t==path[0]: cycles += weight
%o A010569             A.paths, A.weights = np, nw
%o A010569         A.terms.append(cycles)
%o A010569     return A.terms[n-1] # _M. F. Hasler_, Jun 17 2025
%Y A010569 Cf. A010568, A010570.
%K A010569 nonn,more
%O A010569 1,1
%A A010569 _N. J. A. Sloane_
%E A010569 a(6)-a(8) from _Sean A. Irvine_, Jun 04 2018
%E A010569 a(9) from _Sean A. Irvine_, Aug 10 2020
%E A010569 "Self-avoiding" inserted in definition by _M. F. Hasler_, Jun 18 2025
%E A010569 a(10)-a(12) from Clisby et al.'s data added by _Andrei Zabolotskii_, Jun 25 2025