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!)
A351759 Number of words either empty or beginning with the first letter of the n-ary alphabet, where each letter of the alphabet occurs n times and letters of neighboring word positions are equal or neighbors in the alphabet. 2
1, 1, 3, 37, 3593, 2336376, 12085125703, 492300320300251, 163856834420168837331, 450436951076447377275760495, 10360995769563446558192576106611177, 2010994252878923176109086647579398800496256, 3317129856969862808949985510559979253492213624483355 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Also the number of (n^2-1)-step walks on n-dimensional cubic lattice from (1,0,...,0) to (n,n,...,n) with positive unit steps in all dimensions such that the absolute difference of the dimension indices used in consecutive steps is <= 1.
LINKS
FORMULA
a(n) = A208673(n,n).
EXAMPLE
a(2) = 3:
+----+ +----+ +----+
|aabb| |abab| |abba|
+----+ +----+ +----+
|1222| |1122| |1112|
|0012| |0112| |0122|
+----+ +----+ +----+
|xx | |x x | |x x|
| xx| | x x| | xx |
+----+ +----+ +----+
a(3) = 37: aaabbbccc, aaabbcbcc, aaabbccbc, aaabbcccb, aaabcbbcc, aaabcbcbc, aaabcbccb, aaabccbbc, aaabccbcb, aaabcccbb, aababbccc, aababcbcc, aababccbc, aababcccb, aabbabccc, aabbcccba, aabcbabcc, aabcbccba, aabccbabc, aabccbcba, aabcccbab, aabcccbba, abaabbccc, abaabcbcc, abaabccbc, abaabcccb, abababccc, ababcccba, abbaabccc, abbcccbaa, abcbaabcc, abcbccbaa, abccbaabc, abccbcbaa, abcccbaab, abcccbaba, abcccbbaa.
MAPLE
b:= proc(l, t) option remember; (n-> `if`(l=[0$n], 1,
add(`if`(l[i]=0, 0, b(subsop(i=l[i]-1, l), i)),
i=max(1, t-1)..min(n, t+1))))(nops(l))
end:
a:= n-> b([n$n], 0):
seq(a(n), n=0..6);
MATHEMATICA
b[l_, t_] := b[l, t] = Function [n, If[l == Array[0&, n], 1,
Sum[If[l[[i]] == 0, 0, b[ReplacePart[l, i -> l[[i]] - 1], i]],
{i, Max[1, t - 1], Min[n, t + 1]}]]][Length[l]];
a[n_] := b[Array[n&, n], 0];
Table[Print[n, " ", a[n]]; a[n], {n, 0, 7}] (* Jean-François Alcover, May 16 2022, after Alois P. Heinz *)
CROSSREFS
Main diagonal of A208673.
Sequence in context: A368775 A220628 A261594 * A132931 A172029 A120480
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Feb 18 2022
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 May 4 08:39 EDT 2024. Contains 372230 sequences. (Running on oeis4.)