OFFSET
0,3
COMMENTS
T(n,k) is the number of pairs of involutions that when composed yield a permutation whose cycle type is the associated partition. - Andrew Howroyd, Oct 05 2025
LINKS
Andrew Howroyd, Table of n, a(n) for n = 0..2713 (rows 0..20)
T. Kyle Petersen and Bridget Eileen Tenner, How to write a permutation as a product of involutions (and why you might care), arXiv:1202.5319 [math.CO], 2012.
EXAMPLE
Triangle begins:
0 | 1;
1 | 1;
2 | 2, 2;
3 | 6, 6, 4;
4 | 24, 24, 18, 24, 10;
5 | 120, 120, 120, 120, 90, 80, 26;
6 | 720, 720, 720, 480, 720, 720, 300, 480, 540, 300, 76;
...
PROG
(PARI)
B(n, e)=sum(k=0, n\2, binomial(n, 2*k)*e^(n-k)*(2*k)!/(k!*2^k))
C(sig)={my(S=Set(sig)); prod(k=1, #S, my(c=#select(t->t==S[k], sig)); B(c, S[k]))*vecsum(sig)!/(vecprod(sig)*prod(k=1, #S, (#select(t->t==S[k], sig))!))}
Row(n)={apply(C, [Vecrev(p) | p<-partitions(n)])}
{ for(n=0, 7, print(Row(n))) } \\ Andrew Howroyd, Oct 05 2025
CROSSREFS
KEYWORD
easy,nonn,tabf
AUTHOR
Alford Arnold, Mar 12 2010
EXTENSIONS
Definition rephrased by R. J. Mathar, Mar 26 2010
a(0)=1 prepended by Andrew Howroyd, Oct 05 2025
STATUS
approved
