OFFSET
1,2
COMMENTS
The decapitation of such a partition (delete the greatest part) is term-wise greater than its negated first-differences.
LINKS
Fausto A. C. Cariboni, Table of n, a(n) for n = 1..250
EXAMPLE
The a(1) = 1 through a(10) = 8 partitions:
1 2 3 4 5 6 7 8 9 A
11 111 22 32 33 43 44 54 55
1111 11111 222 322 53 333 64
111111 1111111 332 432 433
2222 3222 532
11111111 111111111 3322
22222
1111111111
MATHEMATICA
Table[Length[Select[IntegerPartitions[n], And@@Thread[Differences[-#]<Rest[#]]&]], {n, 30}]
CROSSREFS
The case of equality (all adjacent parts having quotient 2) is A154402.
The version allowing quotients of 2 exactly is A342094.
The strict case allowing quotients of 2 exactly is A342095.
The strict case is A342097.
The reciprocal version is A342098.
A000009 counts strict partitions.
A000929 counts partitions with no adjacent parts having quotient < 2.
A003114 counts partitions with adjacent parts differing by more than 1.
A034296 counts partitions with adjacent parts differing by at most 1.
KEYWORD
nonn
AUTHOR
Gus Wiseman, Mar 02 2021
STATUS
approved