VOOZH about

URL: https://oeis.org/A389762

⇱ A389762 - OEIS


login
A389762
Irregular triangle read by rows: T(n,k) is the number of composite numbers in the k-th 2-dense sublist of divisors of n, with n >= 1, k >= 1.
10
0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 2, 0, 0, 1, 0, 1, 0, 0, 3, 0, 0, 0, 1, 0, 0, 1, 3, 0, 0, 3, 0, 0, 3, 0, 0, 0, 1, 0, 1, 0, 0, 5, 0, 0, 1, 0, 1, 0, 0, 1, 1, 3, 0, 0, 4, 0, 0, 4, 0, 0, 0, 1, 0, 1, 0, 0, 1, 6, 0, 0, 0, 1, 0, 0, 0, 1, 5, 0, 0, 4, 0, 0, 1, 2, 0, 2, 1, 0, 1, 0, 0, 7, 0, 0, 1, 0, 1, 2, 0, 0, 0, 1, 1, 2, 0, 0, 5
OFFSET
1,11
COMMENTS
In a sublist of divisors of n the terms are in increasing order and two adjacent terms are the same two adjacent terms in the list of divisors of n.
The 2-dense sublists of divisors of n are the maximal sublists whose terms increase by a factor of at most 2.
LINKS
Paolo Xausa, Table of n, a(n) for n = 1..12242 (rows 1..4000 of triangle, flattened).
FORMULA
T(n,k) = A384222(n,k) - A389761(n,k).
EXAMPLE
Triangle begins:
0;
0;
0, 0;
1;
0, 0;
1;
0, 0;
2;
0, 0, 1;
0, 1;
0, 0;
3;
0, 0;
0, 1;
0, 0, 1;
3;
...
For n = 78 the list of divisors of 78 is [1, 2, 3, 6, 13, 26, 39, 78]. There are two 2-dense sublists of divisors of 78, they are [1, 2, 3, 6] and [13, 26, 39, 78]. In the first 2-dense sublist there is only one composite number [6], so T(78,1) = 1. In the second 2-dense sublist there are three composite numbers [26, 39, 78], so T(78,2) = 3.
MATHEMATICA
A389762row[n_] := Map[Count[#, _?CompositeQ] &, Split[Divisors[n], #2 <= 2*# &]];
Array[A389762row, 50] (* Paolo Xausa, Oct 21 2025 *)
CROSSREFS
Row sums give A055212.
Sequence in context: A340999 A119395 A087476 * A307505 A035162 A121454
KEYWORD
nonn,tabf
AUTHOR
Omar E. Pol, Oct 14 2025
STATUS
approved