login
A395326
Triangle read by rows: T(n,k) is the number of partitions of {1..2n} that are invariant under a permutation consisting of n 2-cycles with k orbits of blocks.
2
1, 0, 2, 0, 3, 4, 0, 5, 18, 8, 0, 9, 67, 72, 16, 0, 17, 240, 470, 240, 32, 0, 33, 859, 2745, 2420, 720, 64, 0, 65, 3108, 15323, 20790, 10360, 2016, 128, 0, 129, 11407, 84042, 165081, 122640, 39200, 5376, 256, 0, 257, 42480, 458900, 1257480, 1307922, 610848, 135744, 13824, 512
OFFSET
0,3
LINKS
FORMULA
E.g.f.: exp( y*((exp(2*x) - 1)/2 + exp(x) - 1 ) ).
EXAMPLE
Triangle begins:
1;
0, 2;
0, 3, 4;
0, 5, 18, 8;
0, 9, 67, 72, 16;
0, 17, 240, 470, 240, 32;
0, 33, 859, 2745, 2420, 720, 64;
0, 65, 3108, 15323, 20790, 10360, 2016, 128;
0, 129, 11407, 84042, 165081, 122640, 39200, 5376, 256;
...
MAPLE
b:= proc(n) option remember; `if`(n=0, 1, add((1+
2^(j-1))*binomial(n-1, j-1)*expand(b(n-j)*x), j=1..n))
end:
T:= (n, k)-> coeff(b(n), x, k):
seq(seq(T(n, k), k=0..n), n=0..9); # Alois P. Heinz, Apr 27 2026
PROG
(PARI) T(n) = {[Vecrev(p) | p<-Vec(serlaplace(exp( y*((exp(2*x + O(x*x^n)) - 1)/2 + exp(x + O(x*x^n)) - 1 ) )))]}
{ my(A=T(8)); for(i=1, #A, print(A[i])) }
CROSSREFS
Row sums are A002872.
Main diagonal is A000079.
Column k=1 is A000051(n-1).
Sequence in context: A261094 A091538 A340991 * A013584 A307320 A350227
KEYWORD
nonn,tabl
AUTHOR
STATUS
approved