OFFSET
1,10
LINKS
Olivier Gérard, Table of n, a(n) for n = 1..215307
EXAMPLE
Array begins:
1,
1,1,
1,1,1,
1,1,1,2,1,
1,1,1,2,2,2,1,
1,1,1,2,1,1,2,1,1,2,1,
1,1,1,2,1,1,2,2,2,2,2,2,2,2,1
...
T(10,34) is the first term with value 3. It corresponds to partition 3+2+2+1+1+1 of 10, which has three different multiplicities.
MATHEMATICA
Flatten@Table[
Map[Length[Union[Length /@ Split[#]]] &, IntegerPartitions[n]], {n,
1, 20}]
CROSSREFS
KEYWORD
nonn,tabf
AUTHOR
Olivier Gérard, May 29 2024
STATUS
approved