login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A357653
Number of walks on four-dimensional lattice from (n,n,n,n) to (0,0,0,0) using steps that decrease the Euclidean distance to the origin and that change each coordinate by 1 or by -1.
1
1, 1, 49, 781, 221353, 28704961, 6416941789, 1600436821729, 487955996194681, 163694597214638617, 62083509504427287565, 25552605919005414839089, 11415972657891136715599597, 5444030337763685110787232601, 2758095341306366256765459135265
OFFSET
0,3
COMMENTS
Lattice points may have negative coordinates, and different walks may differ in length. All walks are self-avoiding.
All terms are odd.
LINKS
MAPLE
s:= proc(n) option remember;
`if`(n=0, [[]], map(x-> seq([x[], i], i=[-1, 1]), s(n-1)))
end:
b:= proc(l) option remember; (n-> `if`(l=[0$n], 1, add((h-> `if`(
add(i^2, i=h)<add(i^2, i=l), b(sort(h)), 0))(l+x), x=s(n))))(nops(l))
end:
a:= n-> b([n$4]):
seq(a(n), n=0..16);
CROSSREFS
Cf. A348201.
Sequence in context: A215117 A350982 A289992 * A278284 A110906 A193940
KEYWORD
nonn,walk
AUTHOR
Alois P. Heinz, Oct 07 2022
STATUS
approved