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!)
A181187 Triangle read by rows: T(n,k) = sum of k-th largest elements in all partitions of n. 56

%I #107 Feb 09 2021 21:46:36

%S 1,3,1,6,2,1,12,5,2,1,20,8,4,2,1,35,16,8,4,2,1,54,24,13,7,4,2,1,86,41,

%T 22,13,7,4,2,1,128,61,35,20,12,7,4,2,1,192,95,54,33,20,12,7,4,2,1,275,

%U 136,80,49,31,19,12,7,4,2,1,399,204,121,76,48,31,19,12,7,4,2,1,556,284

%N Triangle read by rows: T(n,k) = sum of k-th largest elements in all partitions of n.

%C For the connection with A066897 and A066898 see A206563. - _Omar E. Pol_, Feb 13 2012

%C T(n,k) is also the total number of parts >= k in all partitions of n. - _Omar E. Pol_, Feb 14 2012

%C The first differences of row n together with 1 give the row n of triangle A066633. - _Omar E. Pol_, Feb 26 2012

%C We define the k-th rank of a partition as the k-th part minus the number of parts >= k. Since the first part of a partition is also the largest part of the same partition so the Dyson's rank of a partition is the case for k = 1. It appears that the sum of the k-th ranks of all partitions of n is equal to zero. - _Omar E. Pol_, Mar 04 2012

%C T(n,k) is also the total number of divisors >= k of all positive integers in a sequence with n blocks where the m-th block consists of A000041(n-m) copies of m, with 1 <= m <= n. - _Omar E. Pol_, Feb 05 2021

%H Alois P. Heinz, <a href="/A181187/b181187.txt">Rows n = 1..141, flattened</a>

%F T(n,k) = Sum_{j=1..n} A207031(j,k). - _Omar E. Pol_, May 02 2012

%e From _Omar E. Pol_, Feb 13 2012: (Start)

%e Illustration of initial terms. First five rows of triangle as sums of columns from the partitions of the first five positive integers:

%e .

%e . 5

%e . 3+2

%e . 4 4+1

%e . 2+2 2+2+1

%e . 3 3+1 3+1+1

%e . 2 2+1 2+1+1 2+1+1+1

%e . 1 1+1 1+1+1 1+1+1+1 1+1+1+1+1

%e . -------------------------------------

%e . 1, 3,1, 6,2,1, 12,5,2,1, 20,8,4,2,1 --> This triangle

%e . | |/| |/|/| |/|/|/| |/|/|/|/|

%e . 1, 2,1, 4,1,1, 7,3,1,1, 12,4,2,1,1 --> A066633

%e .

%e For more information see A207031 and A206563.

%e ...

%e Triangle begins:

%e 1;

%e 3, 1;

%e 6, 2, 1;

%e 12, 5, 2, 1;

%e 20, 8, 4, 2, 1;

%e 35, 16, 8, 4, 2, 1;

%e 54, 24, 13, 7, 4, 2, 1;

%e 86, 41, 22, 13, 7, 4, 2, 1;

%e 128, 61, 35, 20, 12, 7, 4, 2, 1;

%e 192, 95, 54, 33, 20, 12, 7, 4, 2, 1;

%e 275, 136, 80, 49, 31, 19, 12, 7, 4, 2, 1;

%e 399, 204, 121, 76, 48, 31, 19, 12, 7, 4, 2, 1;

%e (End)

%p p:= (f, g)-> zip((x, y)-> x+y, f, g, 0):

%p b:= proc(n, i) option remember; local f, g;

%p if n=0 or i=1 then [1, n]

%p else f:= b(n, i-1); g:= `if`(i>n, [0], b(n-i, i));

%p p(p(f, g), [0$i, g[1]])

%p fi

%p end:

%p T:= proc(n) local j, l, r, t;

%p l, r, t:= b(n, n), 1, 1;

%p for j from n to 2 by -1 do t:= t+l[j]; r:=r, t od;

%p seq([r][1+n-j], j=1..n)

%p end:

%p seq(T(n), n=1..14); # _Alois P. Heinz_, Apr 05 2012

%t Table[Plus @@ (PadRight[ #,n]& /@ IntegerPartitions[n]),{n,16}]

%t (* Second program: *)

%t T[n_, n_] = 1; T[n_, k_] /; k<n := T[n, k] = T[n-k, k] + PartitionsP[n-k]; T[_, _] = 0; Table[Table[T[n, k], {k, n, 1, -1}] // Accumulate // Reverse, {n, 1, 16}] // Flatten (* _Jean-François Alcover_, Oct 10 2015, after _Omar E. Pol_ *)

%Y Row sums are A066186. First column is A006128. Reverse of each row converges to A000070.

%Y Columns 2-3: A096541, A207033. - _Omar E. Pol_, Feb 18 2012

%Y T(2n,n) gives A216053(n+1).

%Y Cf. A206283.

%K easy,nonn,tabl

%O 1,2

%A _Wouter Meeussen_, Oct 09 2010

%E Better definition from _Omar E. Pol_, Feb 13 2012

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 March 28 20:05 EDT 2024. Contains 371254 sequences. (Running on oeis4.)