login

Revision History for A111377

(Bold, blue-underlined text is an addition; faded, red-underlined text is a deletion.)

Showing all changes.
Triangle of sum of product of partitions of n where largest part is k.
(history; published version)
#3 by Russ Cox at Fri Mar 30 18:51:39 EDT 2012
AUTHOR

_Henry Bottomley (se16(AT)btinternet.com), _, Nov 09 2005

Discussion
Fri Mar 30
18:51
OEIS Server: https://oeis.org/edit/global/247
#2 by N. J. A. Sloane at Fri Feb 24 03:00:00 EST 2006
FORMULA

T(n, k)=k*sum_j {0<=j<=k} a(n-k, j) starting with T(0, 0)=1; T(n, n)=n for n>=1.

KEYWORD

nonn,tabl,new

#1 by N. J. A. Sloane at Tue Jan 24 03:00:00 EST 2006
NAME

Triangle of sum of product of partitions of n where largest part is k.

DATA

1, 1, 2, 1, 2, 3, 1, 6, 3, 4, 1, 6, 9, 4, 5, 1, 14, 18, 12, 5, 6, 1, 14, 30, 24, 15, 6, 7, 1, 30, 48, 56, 30, 18, 7, 8, 1, 30, 99, 80, 70, 36, 21, 8, 9, 1, 62, 135, 180, 125, 84, 42, 24, 9, 10, 1, 62, 237, 276, 250, 150, 98, 48, 27, 10, 11, 1, 126, 390, 540, 420, 336, 175, 112, 54, 30

OFFSET

1,3

FORMULA

T(n,k)=k*sum_j {0<=j<=k} a(n-k,j) starting with T(0,0)=1; T(n,n)=n for n>=1.

EXAMPLE

Triangle starts 1; 1,2; 1,2,3; 1,6,3,4; 1,6,9,4,5; 1,14,18,12,5,6; etc.

T(6,3)=18 since partitions of 6 with largest part 3 is 3+3, 3+2+1, 3+1+1+1 and 3*3 + 3*2*1 + 3*1*1*1 = 18.

CROSSREFS

Row sums are A006906.

KEYWORD

nonn,tabl

AUTHOR

Henry Bottomley (se16(AT)btinternet.com), Nov 09 2005

STATUS

approved