cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A364322 Number of partitions of 2n with largest part n where each block of part i with multiplicity j is marked with a word of length i*j over a (2n)-ary alphabet whose letters appear in alphabetical order and all 2n letters occur exactly once in the partition.

This page as a plain text file.
%I A364322 #11 Jul 20 2023 09:42:31
%S A364322 1,1,7,81,841,10333,137677,1973401,29150551,484498301,8769443541,
%T A364322 167200081777,3311785261513,66867027890601,1437872937193801,
%U A364322 33031740883673521,796918495251727081,19807865344255857661,501642119664087055501,12828972405814319046601
%N A364322 Number of partitions of 2n with largest part n where each block of part i with multiplicity j is marked with a word of length i*j over a (2n)-ary alphabet whose letters appear in alphabetical order and all 2n letters occur exactly once in the partition.
%C A364322 a(n) is also the number of endofunctions on [2n] such that n is the range maximum and the number of elements that are mapped to m is divisible by m. a(2) = 7: (2211), (2121), (2112), (1221), (1212), (1122), (2222).
%C A364322 All terms are odd.
%H A364322 Alois P. Heinz, <a href="/A364322/b364322.txt">Table of n, a(n) for n = 0..503</a>
%F A364322 a(n) = A364285(2n,n).
%e A364322 a(2) = 7: 2ab11cd, 2ac11bd, 2ad11bc, 2bc11ad, 2bd11ac, 2cd11ab, 22abcd.
%p A364322 b:= proc(n, i) option remember; `if`(n=0, 1, `if`(i<1, 0,
%p A364322       add(b(n-i*j, i-1)*binomial(n, i*j), j=0..n/i)))
%p A364322     end:
%p A364322 a:= n-> b(2*n, n)-`if`(n=0, 0, b(2*n, n-1)):
%p A364322 seq(a(n), n=0..23);
%Y A364322 Cf. A364285.
%K A364322 nonn
%O A364322 0,3
%A A364322 _Alois P. Heinz_, Jul 18 2023