OFFSET
1,2
COMMENTS
The same as A182700, but without the last term of row n.
LINKS
Robert Price, Table of n, a(n) for n = 1..5050 (First 100 rows)
EXAMPLE
Triangle begins:
1;
4, 2;
9, 6, 3;
20, 12, 8, 4;
35, 25, 15, 10, 5;
66, 42, 30, 18, 12, 6;
MATHEMATICA
Table[n*PartitionsP[n-k], {n, 0, 11}, {k, 0, n - 1}] // Flatten (* Robert Price, Jun 23 2020 *)
PROG
(PARI) tabl(nn) = {for (n = 1, nn, for (k = 0, n-1, print1(n*numbpart(n-k), ", "); ); print(); ); } \\ Michel Marcus, Feb 13 2014
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Omar E. Pol, Nov 28 2010
EXTENSIONS
More terms from Michel Marcus, Feb 13 2014
STATUS
approved