OFFSET
1,2
COMMENTS
LINKS
Robert Price, Table of n, a(n) for n = 1..4630, 20 rows.
EXAMPLE
Triangle begins:
1
2,1
3,1,1
4,2,2,1,1,1
5,3,2,1,1,1,1,1,
6,4,2,3,3,2,2,2,1,1,1,1,1,1,1
7,5,2,4,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1
8,6,2,5,3,4,4,4,2,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
9,7,2,6,3,5,4,5,2,2,4,3,2,3,3,3,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
MATHEMATICA
Table[Cases[IntegerPartitions[n], x_ /; Last[x] != 1] ~Join~ConstantArray[{1}, PartitionsP[n - 1]], {n, 8}] // Flatten (* Robert Price, May 22 2020 *)
CROSSREFS
KEYWORD
nonn,tabf,less
AUTHOR
Omar E. Pol, Mar 21 2008
STATUS
approved