login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A264052 Triangle read by rows: T(n,k) (n>=0, 0<=k<=A259361(n)) is the number of integer partitions of n having k distinct parts occurring at least twice. 3

%I #49 Dec 11 2016 13:03:13

%S 1,1,1,1,2,1,2,3,3,4,4,6,1,5,9,1,6,13,3,8,18,4,10,23,9,12,32,12,15,42,

%T 19,1,18,55,27,1,22,69,41,3,27,89,56,4,32,112,78,9,38,141,106,12,46,

%U 175,141,23,54,217,188,31,64,266,247,49,1,76,326,321,68,1

%N Triangle read by rows: T(n,k) (n>=0, 0<=k<=A259361(n)) is the number of integer partitions of n having k distinct parts occurring at least twice.

%C Row sums give A000041.

%C T(n,k) is also the number of integer partitions of n having k parts from which one can subtract 2 and still get an integer partition (mapping a partition to its conjugate sends one statistic to the other).

%C T(n,k) is also the number of integer partitions of n having k distinct even parts. Example: T(6,2)= 1, counting the partition [2,4]. - _Emeric Deutsch_, Sep 19 2016

%H Alois P. Heinz, <a href="/A264052/b264052.txt">Rows n = 0..1000, flattened</a>

%H FindStat - Combinatorial Statistic Finder, <a href="http://www.findstat.org/StatisticsDatabase/St000257">The number of distinct parts of a partition that occur at least twice</a>, <a href="http://www.findstat.org/StatisticsDatabase/St000256">The number of parts from which one can subtract 2 and still get an integer partition</a>.

%H V. V. Tewari, <a href="http://arxiv.org/abs/1403.5327">Kronecker Coefficients For Some Near-Rectangular Partitions</a>, arXiv:1403.5327 [math.CO], 2014, MathSciNet:3320625.

%F From _Emeric Deutsch_, Nov 12 2015: (Start)

%F G.f.: G(t,x) = Product_{j>=1} ((1-(1-t)x^{2j})/(1-x^j)).

%F T(n,0) = A000009(n).

%F T(n,1) = A090867(n).

%F Sum_{k>=0} k*T(n,k) = A024786(n).

%F (End)

%e Triangle begins:

%e 1,

%e 1,

%e 1, 1,

%e 2, 1,

%e 2, 3,

%e 3, 4,

%e 4, 6, 1,

%e 5, 9, 1,

%e 6, 13, 3,

%e 8, 18, 4,

%e 10, 23, 9,

%e ...

%e T(6,2)= 1; namely [1,1,2,2]. - _Emeric Deutsch_, Sep 19 2016

%p b:= proc(n, i) option remember; expand(

%p `if`(n=0, 1, `if`(i<1, 0, add(b(n-i*j, i-1)*

%p `if`(j>1, x, 1), j=0..n/i))))

%p end:

%p T:= n-> (p-> seq(coeff(p, x, i), i=0..degree(p)))(b(n$2)):

%p seq(T(n), n=0..25); # _Alois P. Heinz_, Nov 02 2015

%p # second Maple program:

%p g := product((1-(1-t)*x^(2*j))/(1-x^j), j = 1 .. 80): gser := simplify(series(g, x = 0, 25)): for n from 0 to 23 do P[n] := sort(coeff(gser, x, n)) end do: for n from 0 to 23 do seq(coeff(P[n], t, i), i = 0 .. degree(P[n])) end do; # yields sequence in triangular form - _Emeric Deutsch_, Nov 12 2015

%t T[n_, k_] := SeriesCoefficient[QPochhammer[1-t, x^2]/(t*QPochhammer[x]), {x, 0, n}, {t, 0, k}]; Table[DeleteCases[Table[T[n, k], {k, 0, n}], 0], {n, 0, 25}] // Flatten (* _Jean-François Alcover_, Dec 11 2016 *)

%Y Cf. A000009, A000041, A024786, A090867, A259361.

%K nonn,look,tabf

%O 0,5

%A _Christian Stump_, Nov 01 2015

%E More terms from _Alois P. Heinz_, Nov 02 2015

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)