A325254 Number of integer partitions of n with the maximum adjusted frequency depth for partitions of n.
0, 1, 1, 1, 1, 3, 3, 1, 3, 7, 10, 17, 27, 38, 1, 4, 8, 17, 31, 52, 83, 122, 181, 257, 361, 499, 684, 910, 1211, 1595, 2060, 2663, 3406, 4315, 5426, 6784, 8417, 10466, 12824, 15721, 19104, 23267, 1, 5, 14, 36, 76, 143, 269, 446, 738, 1143, 1754, 2570, 3742, 5269
Offset: 0
Keywords
Examples
The a(1) = 1 through a(11) = 17 partitions: 1 11 21 211 221 411 3211 3221 3321 5221 4322 311 3111 4211 4221 5311 4331 2111 21111 32111 4311 6211 4421 5211 32221 5411 32211 33211 6221 42111 42211 6311 321111 43111 7211 52111 33221 421111 42221 3211111 43211 52211 53111 62111 431111 521111 4211111 32111111
Crossrefs
Programs
-
Mathematica
nn=30; fdadj[ptn_List]:=If[ptn=={},0,Length[NestWhileList[Sort[Length/@Split[#]]&,ptn,Length[#]>1&]]]; mfds=Table[Max@@fdadj/@IntegerPartitions[n],{n,nn}]; Table[Length[Select[IntegerPartitions[n],fdadj[#]==mfds[[n]]&]],{n,0,nn}]
Comments