This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A325282 #7 Apr 19 2019 13:42:09 %S A325282 0,1,2,3,4,4,4,5,5,5,5,5,5,5,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6, %T A325282 6,6,6,6,6,6,6,6,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7, %U A325282 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7 %N A325282 Maximum adjusted frequency depth among integer partitions of n. %C A325282 The adjusted frequency depth of an integer partition is 0 if the partition is empty, and otherwise it is one plus the number of times one must take the multiset of multiplicities to reach a singleton. For example, the partition (32211) has adjusted frequency depth 5 because we have: (32211) -> (221) -> (21) -> (11) -> (2). %C A325282 The term "frequency depth" appears to have been coined by Clark Kimberling in A225485 and A225486, and can be applied to both integers (A323014) and integer partitions (A325280). %C A325282 Run lengths are A325258, i.e., first differences of Levine's sequence A011784 (except at n = 1). %F A325282 a(0) = 0; a(1) = 1; a(n > 1) = A225486(n). %t A325282 fdadj[ptn_List]:=If[ptn=={},0,Length[NestWhileList[Sort[Length/@Split[#]]&,ptn,Length[#]>1&]]]; %t A325282 Table[Max@@fdadj/@IntegerPartitions[n],{n,0,30}] %Y A325282 Cf. A011784, A032741, A127002, A181819, A225486, A275870, A323014, A323023, A325245, A325254, A325258, A325278, A325282, A325283. %Y A325282 Integer partition triangles: A008284 (first omega), A116608 (second omega), A325242 (third omega), A325268 (second-to-last omega), A225485 or A325280 (length/frequency depth). %K A325282 nonn %O A325282 0,3 %A A325282 _Gus Wiseman_, Apr 18 2019