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!)
A369923 Array read by antidiagonals: A(n,k) is the number of permutations of n copies of 1..k with values introduced in order and without cyclically adjacent elements equal. 7
0, 1, 0, 1, 1, 0, 1, 4, 1, 0, 1, 31, 22, 1, 0, 1, 293, 1415, 134, 1, 0, 1, 3326, 140343, 75843, 866, 1, 0, 1, 44189, 20167651, 83002866, 4446741, 5812, 1, 0, 1, 673471, 3980871156, 158861646466, 55279816356, 276154969, 40048, 1, 0 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,8
COMMENTS
Also, T(n,k) is the number of generalized chord labeled loopless diagrams with k parts of K_n. See the Krasko reference for a full definition.
LINKS
Andrew Howroyd, Table of n, a(n) for n = 1..1275 (first 51 antidiagonals)
Evgeniy Krasko, Igor Labutin, and Alexander Omelchenko, Enumeration of Labelled and Unlabelled Hamiltonian Cycles in Complete k-partite Graphs, arXiv:1709.03218 [math.CO], 2017.
Mathematics.StackExchange, Find the number of k 1's, k 2's, ... , k n's - total kn cards, Apr 08 2012.
EXAMPLE
Array begins:
n\k| 1 2 3 4 5 6 ...
---+-----------------------------------------------------------
1 | 0 1 1 1 1 1 ...
2 | 0 1 4 31 293 3326 ...
3 | 0 1 22 1415 140343 20167651 ...
4 | 0 1 134 75843 83002866 158861646466 ...
5 | 0 1 866 4446741 55279816356 1450728060971387 ...
6 | 0 1 5812 276154969 39738077935264 14571371516350429940 ...
...
PROG
(PARI) \\ compare with A322013.
q(n, x) = sum(i=1, n, (-1)^(n-i) * binomial(n-1, n-i) * x^i/i!)
T(n, k) = if(k > 1, subst(serlaplace(n*q(n, x)^k/x), x, 1)/(k-1)!, 0)
CROSSREFS
Column 3 is A197657, column 4 appears to be A209183(n)/2.
Cf. A322013 (without linearly adjacent elements equal), A322093.
Sequence in context: A281891 A124539 A351703 * A249094 A096501 A062862
KEYWORD
nonn,tabl
AUTHOR
Andrew Howroyd, Feb 05 2024
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 September 12 20:17 EDT 2024. Contains 375854 sequences. (Running on oeis4.)