login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A036050
Sum of the lengths of the cycle types of the permutation created by duality and reversal on the partitions of n.
1
1, 1, 1, 1, 1, 3, 6, 17, 10, 35, 49, 53, 91, 125, 169, 220, 290, 378, 394, 507, 709, 917, 1229, 1475, 1924, 2347, 2851, 3293, 3568, 5597, 6739, 8130, 10131, 12250, 14401, 17705, 21569, 25967, 31174, 37186, 44462, 52964, 63187, 74504, 88467, 105179, 124120, 147040, 172031, 202775
OFFSET
1,6
PROG
(PARI)
Dual(v)={my(u=vectorsmall(v[1]), k=0); forstep(i=#u, 1, -1, while(k<#v&&v[k+1]>=i, k++); u[i]=k); u}
OrderCycs(v)={my(t=vector(#v), L=List()); for(i=1, #v, my(c=0, j=i); while(!t[j], t[j]=1; j=v[j]; c++); if(c, listput(L, c))); Vec(L)}
a(n)={my(u=vecsort([Vecsmall(Vecrev(p)) | p<-partitions(n)])); my(v=vector(#u, i, vecsearch(u, Dual(u[#u+1-i])))); vecsum(Set(OrderCycs(v)))} \\ Andrew Howroyd, Sep 16 2019
CROSSREFS
KEYWORD
nonn
EXTENSIONS
a(31)-a(50) from Andrew Howroyd, Sep 16 2019
STATUS
approved