login
A386989
Irregular triangle read by rows: T(n,k) is the product of terms in the k-th 2-dense sublist of divisors of n, with n >= 1, k >= 1.
13
1, 2, 1, 3, 8, 1, 5, 36, 1, 7, 64, 1, 3, 9, 2, 50, 1, 11, 1728, 1, 13, 2, 98, 1, 15, 15, 1024, 1, 17, 5832, 1, 19, 8000, 1, 3, 7, 21, 2, 242, 1, 23, 331776, 1, 5, 25, 2, 338, 1, 3, 9, 27, 21952, 1, 29, 810000, 1, 31, 32768, 1, 3, 11, 33, 2, 578, 1, 35, 35, 10077696, 1, 37, 2, 722, 1, 3, 13, 39, 2560000
OFFSET
1,2
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.
It is conjectured that row lengths are given by A237271.
LINKS
Paolo Xausa, Table of n, a(n) for n = 1..10607 (rows 1..3500 of triangle, flattened).
EXAMPLE
Triangle begins:
1;
2;
1, 3;
8;
1, 5;
36;
1, 7;
64;
1, 3, 9;
2, 50;
...
For n = 10 the list of divisors of 10 is [1, 2, 5, 10]. There are two 2-dense sublists of divisors of 10, they are [1, 2] and [5, 10]. The product of terms are 1*2 = 2 and 5*10 = 50 respectively, so the row 10 of the triangle is [2, 50].
MATHEMATICA
A386989row[n_] :=Times @@@ Split[Divisors[n], #2/# <= 2 &];
Array[A386989row, 50] (* Paolo Xausa, Aug 29 2025 *)
CROSSREFS
Row products give A007955.
Sequence in context: A135299 A092081 A203997 * A057740 A320875 A265891
KEYWORD
nonn,tabf
AUTHOR
Omar E. Pol, Aug 12 2025
STATUS
approved