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.

A094060 Number of walks of length n on hexagonal grid that start and end at the origin. Intermediate returns to the origin are not permitted.

This page as a plain text file.
%I A094060 #23 Aug 09 2025 20:23:03
%S A094060 1,0,6,12,54,216,1032,4896,24606,125040,651348,3432168,18331992,
%T A094060 98814816,537343632,2942475552,16214888286,89835783264,500116783740,
%U A094060 2795958732024,15690597591636,88354191756816,499060719941616,2826794871554112,16052536475622792
%N A094060 Number of walks of length n on hexagonal grid that start and end at the origin. Intermediate returns to the origin are not permitted.
%H A094060 Alois P. Heinz, <a href="/A094060/b094060.txt">Table of n, a(n) for n = 0..1291</a> (first 97 terms from Ludovic Schwob)
%F A094060 INVERTi transform of A002898. - _R. J. Mathar_, Sep 29 2020
%p A094060 b:= proc(n) option remember; `if`(n<3, [1,0,6][n+1], ((n-1)*
%p A094060       n*b(n-1) +24*(n-1)^2*b(n-2) +36*(n-1)*(n-2)*b(n-3))/n^2)
%p A094060     end:
%p A094060 a:= proc(n) option remember; `if`(n=0, 1,
%p A094060       b(n)-add(a(n-i)*b(i), i=1..n-1))
%p A094060     end:
%p A094060 seq(a(n), n=0..23);  # _Alois P. Heinz_, Dec 07 2020
%t A094060 b[n_] := b[n] = If[n<3, {1, 0, 6}[[n+1]], ((n-1)n b[n-1] + 24(n-1)^2* b[n-2] + 36(n-1)(n-2) b[n-3])/n^2];
%t A094060 a[n_] := a[n] = If[n==0, 1, b[n] - Sum[a[n-i] b[i], {i, 1, n-1}]];
%t A094060 a /@ Range[0, 23] (* _Jean-François Alcover_, Jan 14 2021, after _Alois P. Heinz_ *)
%o A094060 (PARI) seq(n)={my(g=sum(m=0, n, (3*m)!/m!^3*x^(2*m)*(1+2*x)^m, O(x*x^n))); Vec(2-1/g)} \\ _Andrew Howroyd_, Aug 09 2025
%Y A094060 Cf. A002898, A054474.
%K A094060 nonn,walk
%O A094060 0,3
%A A094060 _Gareth McCaughan_, Jun 10 2004