A373343 Array read by ascending antidiagonals: A(n,k) is the number of cyclic de Bruijn sequences of order k and alphabet of size n, with k > 0.
1, 1, 1, 2, 1, 1, 6, 24, 2, 1, 24, 20736, 373248, 16, 1, 120, 995328000, 189321481108517289984, 12635683568857645056, 2048, 1
Offset: 1
Examples
The array begins: 1, 1, 1, 1, ... 1, 1, 2, 16, ... 2, 24, 373248, 12635683568857645056, ... ...
Links
- D. Condon, Yuxin Wang, and E. Yang, De Bruijn Polyominoes, arXiv:2405.18543 [math.CO], 2024. See page 5.
- T. van Aardenne-Ehrenfest and N. G. de Brujin, Circuits and Trees in Oriented Linear Graphs. In: Simon Stevin 28 (1951), pp. 203-217.
Crossrefs
Programs
-
Mathematica
A[n_,k_]:=(n!)^(n^(k-1))/n^k; Table[A[n-k+1,k],{n,6},{k,n}]//Flatten
Comments