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!)
A325271 Number of integer partitions of n with frequency depth round(sqrt(n)). 2
1, 1, 1, 1, 2, 1, 3, 4, 6, 8, 11, 11, 19, 44, 53, 63, 83, 113, 124, 171, 190, 344, 429, 525, 662, 796, 981, 1182, 1442, 1709, 2096, 2663, 3406, 4315, 5426, 6784, 8417, 10466, 12824, 15721, 19104, 23267, 27981, 5, 14, 36, 76, 143, 269, 446, 738, 1143, 1754 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
COMMENTS
The adjusted frequency depth of an integer partition is 0 if the partition is empty, and otherwise it is 1 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).
LINKS
EXAMPLE
The a(2) = 1 through a(10) = 11 partitions:
(2) (111) (22) (11111) (33) (43) (53) (54) (64)
(1111) (222) (52) (62) (63) (73)
(111111) (61) (71) (72) (82)
(421) (431) (81) (91)
(521) (432) (532)
(3311) (531) (541)
(621) (631)
(222111) (721)
(3322)
(4321)
(4411)
MATHEMATICA
fdadj[ptn_List]:=If[ptn=={}, 0, Length[NestWhileList[Sort[Length/@Split[#]]&, ptn, Length[#]>1&]]];
Table[Length[Select[IntegerPartitions[n], fdadj[#]==Round[Sqrt[n]]&]], {n, 0, 30}]
CROSSREFS
Sequence in context: A158504 A293253 A266687 * A338860 A358642 A060214
KEYWORD
nonn
AUTHOR
Gus Wiseman, Apr 23 2019
STATUS
approved

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 July 22 22:03 EDT 2024. Contains 374544 sequences. (Running on oeis4.)