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!)
A325350 Number of integer partitions of n whose augmented differences are weakly decreasing. 9
1, 1, 2, 3, 4, 6, 8, 10, 13, 17, 21, 26, 32, 38, 46, 56, 66, 78, 92, 106, 124, 145, 166, 191, 220, 249, 284, 325, 366, 413, 468, 523, 586, 659, 733, 817, 913, 1011, 1121, 1245, 1373, 1515, 1674, 1838, 2020, 2223, 2433, 2664, 2920, 3184, 3476, 3797, 4129, 4492 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
The augmented differences aug(y) of an integer partition y of length k are given by aug(y)_i = y_i - y_{i + 1} + 1 if i < k and aug(y)_k = y_k. For example, aug(6,5,5,3,3,3) = (2,1,3,1,1,3).
The Heinz numbers of these partitions are given by A325389.
LINKS
Fausto A. C. Cariboni, Table of n, a(n) for n = 0..500
FORMULA
G.f.: Sum_{k>=0} x^k / Product_{j=1..k} (1 - x^(j*(j+1)/2)) (conjecture). - Ilya Gutkovskiy, Apr 25 2019
EXAMPLE
The a(1) = 1 through a(8) = 13 partitions:
(1) (2) (3) (4) (5) (6) (7) (8)
(11) (21) (31) (32) (42) (52) (53)
(111) (211) (41) (51) (61) (62)
(1111) (311) (321) (421) (71)
(2111) (411) (511) (521)
(11111) (3111) (3211) (611)
(21111) (4111) (4211)
(111111) (31111) (5111)
(211111) (32111)
(1111111) (41111)
(311111)
(2111111)
(11111111)
For example, (4,2,1,1) has augmented differences (3,2,1,1), which are weakly decreasing, so (4,2,1,1) is counted under a(8).
MATHEMATICA
aug[y_]:=Table[If[i<Length[y], y[[i]]-y[[i+1]]+1, y[[i]]], {i, Length[y]}];
Table[Length[Select[IntegerPartitions[n], OrderedQ[Reverse[aug[#]]]&]], {n, 0, 30}]
CROSSREFS
Sequence in context: A020702 A067996 A074715 * A027585 A123015 A005434
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 April 24 04:14 EDT 2024. Contains 371918 sequences. (Running on oeis4.)