login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A238003 Number of partitions of n not having depth 1; see Comments. 1

%I #15 Jan 28 2022 07:43:30

%S 1,1,2,3,3,5,6,11,10,17,19,30,34,50,54,89,97,126,160,215,254,339,409,

%T 549,649,838,997,1286,1562,1934,2375,2966,3552,4418,5339,6505,7869,

%U 9591,11499,13946,16781,20163,24167,28932,34434,41285,49116,58508,69361

%N Number of partitions of n not having depth 1; see Comments.

%C The depth of a partition is defined at A237685 as follows. Suppose that P is a partition of n. Let x(1), x(2), ..., x(k) be the distinct parts of P, and let m(i) be the multiplicity of x(i) in P. Let f(P) be the partition [m(1)*x(1), m(2)*x(2), ..., x(k)*m(k)] of n. Define c(0,P) = P, c(1,P) = f(P), ..., c(n,P) = f(c(n-1,P), and define d(P) = least n such that c(n,P) has no repeated parts; d(P) is the depth of P. Conjecture: lim_{n->infinity} a(n)/A000041(n) = 1.

%F a(n) = A000041(n) - A237685(n) for n >= 1.

%e The 11 partitions of 6 are partitioned by depth as follows:

%e depth 0: 6, 51, 42, 321;

%e depth 1: 411, 33, 222, 2211, 21111, 11111;

%e depth 2: 3111.

%e Thus, a(6) = 5.

%t z = 40; c[n_] := c[n] = Map[Length[FixedPointList[Sort[Map[Total, Split[#]], Greater] &, #]] - 2 &, IntegerPartitions[n]]

%t Table[Count[c[n], 1], {n, 1, z}] (* A237685 *)

%t Table[PartitionsP[n] - Count[c[n], 1], {n, 1, z}] (* A238003 *)

%t (* _Peter J. C. Moses_, Feb 19 2014 *)

%Y Cf. A237685, A000041.

%K nonn,easy

%O 1,3

%A _Clark Kimberling_, Feb 19 2014

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 16 08:27 EDT 2024. Contains 371698 sequences. (Running on oeis4.)