OFFSET
1,4
COMMENTS
We define a divisor d|n to be superior if d >= n/d. Superior divisors are counted by A038548 and listed by A161908.
These chains have first-quotients (in analogy with first-differences) that are term-wise less than or equal to their decapitation (maximum element removed). Equivalently, x <= y^2 for all adjacent x, y. For example, the divisor chain q = 24/8/4/2 has first-quotients (3,2,2), which are less than or equal to (8,4,2), so q is counted under a(24).
Also the number of ordered factorizations of n where each factor is less than or equal to the product of all previous factors.
LINKS
Alois P. Heinz, Table of n, a(n) for n = 1..65536
FORMULA
a(2^n) = A045690(n).
EXAMPLE
The a(n) chains for n = 2, 4, 8, 12, 16, 20, 24, 30, 32:
2 4 8 12 16 20 24 30 32
4/2 8/4 12/4 16/4 20/5 24/6 30/6 32/8
8/4/2 12/6 16/8 20/10 24/8 30/10 32/16
12/4/2 16/4/2 20/10/5 24/12 30/15 32/8/4
12/6/3 16/8/4 24/6/3 30/6/3 32/16/4
16/8/4/2 24/8/4 30/10/5 32/16/8
24/12/4 30/15/5 32/8/4/2
24/12/6 32/16/4/2
24/8/4/2 32/16/8/4
24/12/4/2 32/16/8/4/2
24/12/6/3
The a(n) ordered factorizations for n = 2, 4, 8, 12, 16, 20, 24, 30, 32:
2 4 8 12 16 20 24 30 32
2*2 4*2 4*3 4*4 5*4 6*4 6*5 8*4
2*2*2 6*2 8*2 10*2 8*3 10*3 16*2
2*2*3 2*2*4 5*2*2 12*2 15*2 4*2*4
3*2*2 4*2*2 3*2*4 3*2*5 4*4*2
2*2*2*2 4*2*3 5*2*3 8*2*2
4*3*2 5*3*2 2*2*2*4
6*2*2 2*2*4*2
2*2*2*3 4*2*2*2
2*2*3*2 2*2*2*2*2
3*2*2*2
MAPLE
a:= proc(n) option remember; 1+add(`if`(d>=n/d,
a(d), 0), d=numtheory[divisors](n) minus {n})
end:
seq(a(n), n=1..128); # Alois P. Heinz, Jun 24 2021
MATHEMATICA
cmo[n_]:=Prepend[Prepend[#, n]&/@Join@@cmo/@Select[Most[Divisors[n]], #>=n/#&], {n}];
Table[Length[cmo[n]], {n, 100}]
CROSSREFS
The restriction to powers of 2 is A045690.
The inferior version is A337135.
The strictly inferior version is A342083.
The strictly superior version is A342084.
The additive version not allowing equality is A342098.
A001055 counts factorizations.
A038548 counts inferior (or superior) divisors.
A056924 counts strictly inferior (or strictly superior) divisors.
A067824 counts strict chains of divisors starting with n.
A074206 counts strict chains of divisors from n to 1 (also ordered factorizations).
A167865 counts strict chains of divisors > 1 summing to n.
A207375 lists central divisors.
A253249 counts strict chains of divisors.
A334996 counts ordered factorizations by product and length.
A334997 counts chains of divisors of n by length.
KEYWORD
nonn
AUTHOR
Gus Wiseman, Feb 28 2021
STATUS
approved