login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A334237 a(n) = 2*Sum_{k=0..n-1} binomial(n,k)^2*binomial(n,k+1)^2. 0
2, 16, 198, 2368, 30100, 392544, 5248782, 71501056, 989177508, 13859716000, 196282985756, 2805235913088, 40408113882344, 586055349387200, 8551024115349150, 125431745952519168, 1848653992986172324, 27362153523832614432, 406546456064695351020 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
a(n) is also the number of simultaneous walks between two walkers on an n X n grid, subject to a "social distancing" constraint. The rules are the same as in A005260, but the counting criterion is changed so that the walkers cannot meet. Instead, they must be separated by closest-approach distance of sqrt(2) after n steps. Each term a(n) is a hypergeometric single sum, so Zeilberger's algorithm applies, and a(n) must also satisfy a p-recurrence.
REFERENCES
B. Klee and É. Angelini, "Social Distancing and A005260", [math-fun] mailing list, Apr. 19, 2020.
LINKS
Oskar Schlemmer, Das Triadisches Ballett: Gelbe Marsch, Bavaria Atelier, 1970.
D. Zeilberger, The Method of Creative Telescoping, Journal of Symbolic Computation, 11.3 (1991), 195-204.
FORMULA
D-finite with recurrence (n-1)^2*(n+1)^3*(5*n^2-10*n+4)*a(n) - 2*n^2*(2*n-1)*(15*n^4-30*n^3+7*n^2+8*n-8)*a(n-1) - 4*(n-1)^2*n*(4*n-5)*(4*n-3)*(5*n^2-1)*a(n-2) = 0.
a(n) ~ 2^(4*n + 3/2) / (Pi*n)^(3/2). - Vaclav Kotesovec, Apr 20 2020
MATHEMATICA
RecurrenceTable[{Dot[{(n-1)^2*(n+1)^3*(5*n^2-10*n+4),
-2*n^2*(2*n-1)*(15*n^4-30*n^3+7*n^2+8*n-8),
-4*(n-1)^2*n*(4*n-5)*(4*n-3)*(5*n^2-1)},
a[n-#]&/@Range[0, 2]] == 0, a[0] == 0, a[1] == 2},
a, {n, 0, 100}]
PROG
(PARI) a(n) = 2*sum(k=0, n-1, binomial(n, k)^2*binomial(n, k+1)^2); \\ Michel Marcus, Apr 19 2020
CROSSREFS
Cf. A005260.
Sequence in context: A051711 A274448 A209586 * A356585 A012683 A012677
KEYWORD
nonn,walk
AUTHOR
Bradley Klee, Apr 19 2020
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 15:52 EDT 2024. Contains 371961 sequences. (Running on oeis4.)