A285175 Number of normal generalized Young tableaux, of shape the integer partition with Heinz number n, with all rows and columns strictly increasing.
1, 1, 1, 1, 1, 3, 1, 1, 3, 5, 1, 5, 1, 7, 11, 1, 1, 11, 1, 13, 23, 9, 1, 7, 11, 11, 11, 25, 1, 51, 1, 1, 39, 13, 45, 23, 1, 15, 59, 25, 1, 135, 1, 41, 73, 17, 1, 9, 45, 73, 83, 61, 1, 45, 107, 63, 111, 19, 1, 135, 1, 21, 259, 1, 205, 279, 1, 85, 143, 349, 1
Offset: 1
Keywords
Examples
The a(15) = 11 tableaux: 1 2 3 1 2 4 1 3 4 1 2 5 1 3 5 4 5 3 5 2 5 3 4 2 4 . 1 2 3 1 2 3 1 2 4 1 2 4 1 3 4 2 4 3 4 2 3 3 4 2 4 . 1 2 3 2 3
Crossrefs
Programs
-
Mathematica
a[n_]:=If[n===1,1,Sum[a[n/q*Times@@Cases[FactorInteger[q],{p_,k_}:>If[p===2,1,NextPrime[p,-1]^k]]],{q,Select[Rest[Divisors[n]],SquareFreeQ]}]]; Array[a,100]
Comments