OFFSET
0,4
COMMENTS
Also the number of reversed strict integer partitions of n with distinct first quotients.
The first quotients of a sequence are defined as if the sequence were an increasing divisor chain, so for example the first quotients of (6,3,1) are (1/2,1/3).
LINKS
Eric Weisstein's World of Mathematics, Logarithmically Concave Sequence.
EXAMPLE
The strict partition (12,10,5,2,1) has first quotients (5/6,1/2,2/5,1/2) so is not counted under a(30), even though the first differences (-2,-5,-3,-1) are distinct.
The a(1) = 1 through a(13) = 16 partitions (A..D = 10..13):
1 2 3 4 5 6 7 8 9 A B C D
21 31 32 42 43 53 54 64 65 75 76
41 51 52 62 63 73 74 84 85
321 61 71 72 82 83 93 94
431 81 91 92 A2 A3
521 432 532 A1 B1 B2
531 541 542 543 C1
621 631 632 642 643
721 641 651 652
4321 731 732 742
821 741 751
5321 831 832
921 841
A21
5431
7321
MATHEMATICA
Table[Length[Select[IntegerPartitions[n], UnsameQ@@#&&UnsameQ@@Divide@@@Partition[#, 2, 1]&]], {n, 0, 30}]
CROSSREFS
The version for differences instead of quotients is A320347.
The equal instead of distinct version is A342515.
The non-strict ordered version is A342529.
The version for strict divisor chains is A342530.
A167865 counts strict chains of divisors > 1 summing to n.
A342086 counts strict chains of divisors with strictly increasing quotients.
A342098 counts (strict) partitions with all adjacent parts x > 2y.
KEYWORD
nonn
AUTHOR
Gus Wiseman, Mar 20 2021
STATUS
approved