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.
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
Examples
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].
Links
- Paolo Xausa, Table of n, a(n) for n = 1..10607 (rows 1..3500 of triangle, flattened).
Crossrefs
Programs
-
Mathematica
A386989row[n_] :=Times @@@ Split[Divisors[n], #2/# <= 2 &]; Array[A386989row, 50] (* Paolo Xausa, Aug 29 2025 *)
Comments