login
Number of n-step excursions on the 10-dimensional f.c.c. lattice.
8

%I #17 Apr 20 2016 10:40:50

%S 1,0,180,5760,355860,24226560,1923670800,169658496000,16291413249300,

%T 1674631754611200,181989927592033680,20709782925396364800,

%U 2449425950787336166800,299337868552812779289600,37621311095831818078152000

%N Number of n-step excursions on the 10-dimensional f.c.c. lattice.

%C a(n) = number of walks in the integer lattice Z^10 starting and ending at the origin, using only the steps of the form (s_1, ..., s_10) with s_1^2 + ... + s_10^2 = 2, i.e., each possible step has precisely two nonzero entries which can be +1 or -1.

%H Christoph Koutschan, <a href="/A271673/b271673.txt">Table of n, a(n) for n = 0..449</a>

%H S. Hassani, C. Koutschan, J-M. Maillard, N. Zenine, <a href="http://arxiv.org/abs/1601.05657">Lattice Green Functions: the d-dimensional face-centred cubic lattice, d = 8, 9, 10, 11, 12</a>, arXiv:1601.05657 [math-ph], 2016.

%H S. Hassani, C. Koutschan, J-M. Maillard, N. Zenine, <a href="http://dx.doi.org/10.1088/1751-8113/49/16/164003">Lattice Green functions: the d-dimensional face-centred cubic lattice, d = 8, 9, 10, 11, 12</a>, Journal of Physics A: Mathematical and Theoretical 49(16) (2016), 164003.

%H C. Koutschan, <a href="http://www.koutschan.de/data/fcc1/">Computations for higher-dimensional fcc lattices</a>.

%H C. Koutschan, <a href="http://www.koutschan.de/data/fcc1/fcc10_mop.txt">Differential operator annihilating the generating function</a>.

%H C. Koutschan, <a href="http://www.koutschan.de/data/fcc1/fcc10_rec.txt">Recurrence equation</a>.

%F a(n) conjecturally satisfies a linear recurrence equation of order 30 with polynomial coefficients of degree 274 (see link above).

%F The probability generating function P(z) = Sum_{n>=0} a(n)*(z/180)^n is given by the 10-fold integral (1/Pi)^10 Int_{0..Pi} ... Int_{0..Pi} 1/(1-z*lambda_10) dk_1 ... dk_10, where the structure function is defined as lambda_10 = (1/binomial(10,2)) Sum_{i=1..10} Sum_{j=(i+1)..10} cos(k_i)*cos(k_j). The function P(z) conjecturally satisfies a linear ODE of order 22 with polynomial coefficients of degree 300 (see link above).

%e There is one walk with no steps.

%e No walk with a single steps returns to the origin.

%e The number of returning walks with two steps is exactly the number of allowed steps (called the coordination number of the lattice): a(2) = 4*binomial(10,2).

%p nmax := 50: tt := [seq([seq(add(binomial(2*p,p)*binomial(2*j,2*p-n)*binomial(2*n+2*j-2*p,n+j-p), p = floor((n+1)/2)..floor((n+2*j)/2)), j = 0..floor((nmax-n)/2))], n = 0..nmax)]: for d1 from 3 to 10 do tt := [seq([seq(add(binomial(n,p)*add(binomial(2*j,2*q-p)*binomial(2*j+2*p-2*q,j+p-q)*tt[n-p+1,q+1], q = floor((p+1)/2)..floor((p+2*j)/2)), p = 0..n), j = 0..floor((nmax-n)/2))], n = 0..nmax)]: od: [seq(tt[n+1,1], n = 0..nmax)];

%t nmax = 50; T = Table[Sum[Binomial[2 p, p]*Binomial[2 j, 2 p - n]*Binomial[2 n + 2 j - 2 p, n + j - p], {p, Floor[(n + 1)/2], Floor[(n + 2 j)/2]}], {n, 0, nmax}, {j, 0, Floor[(nmax - n)/2]}]; Do[T = Table[Sum[Binomial[n, p]*Sum[Binomial[2 j, 2 q - p]*Binomial[2 j + 2 p - 2 q, j + p - q]*T[[n - p + 1, q + 1]], {q, Floor[(p + 1)/2], Floor[(p + 2 j)/2]}], {p, 0, n}], {n, 0, nmax}, {j, 0, If[d1 < 10, Floor[(nmax - n)/2], 0]}], {d1, 3, 10}]; First /@ T

%Y Cf. A002895, A002899 (d = 3, i.e., excursions on the 3-dimensional f.c.c. lattice), A271432 (d = 4), A271650 (d = 5), A271651 (d = 6), A271670 (d = 7), A271671 (d = 8), A271672 (d = 9), this sequence (d = 10), A271674 (d = 11).

%K nonn,walk

%O 0,3

%A _Christoph Koutschan_, Apr 12 2016