OFFSET
0,4
COMMENTS
In a 2-dense sublist of divisors of k the terms are in increasing order and two adjacent terms are the same two adjacent terms in the list of divisors of k.
The 2-dense sublists of divisors of k are the maximal sublists whose terms increase by a factor of at most 2.
LINKS
Alois P. Heinz, Table of n, a(n) for n = 0..4000
EXAMPLE
For n = 7 the number of partitions of 7 is A000041(7) = 15. The list of divisors of 15 is [1, 3, 5, 15]. There are three 2-dense sublists of divisors of 15, they are [1], [3, 5], [15], so a(7) = 3.
For n = 19 the number of partitions of 19 is A000041(19) = 490. The list of divisors of 490 is [1, 2, 5, 7, 10, 14, 35, 49, 70, 98, 245, 490]. There are four 2-dense sublists of divisors of 490, they are [1, 2], [5, 7, 10, 14], [35, 49, 70, 98], [245, 490], so a(19) = 4.
MATHEMATICA
A384931[n_] := Length[Split[Divisors[PartitionsP[n]], #2 <= 2*# &]];
Array[A384931, 100, 0] (* Paolo Xausa, Aug 28 2025 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Omar E. Pol, Jul 30 2025
EXTENSIONS
More terms from Alois P. Heinz, Jul 30 2025
STATUS
approved
