A376248 Irregular triangle where row n lists m such that rad(m) | n and bigomega(m) <= bigomega(n), where rad = A007947 and bigomega = A001222.
1, 1, 2, 1, 3, 1, 2, 4, 1, 5, 1, 2, 3, 4, 6, 9, 1, 7, 1, 2, 4, 8, 1, 3, 9, 1, 2, 4, 5, 10, 25, 1, 11, 1, 2, 3, 4, 6, 8, 9, 12, 18, 27, 1, 13, 1, 2, 4, 7, 14, 49, 1, 3, 5, 9, 15, 25, 1, 2, 4, 8, 16, 1, 17, 1, 2, 3, 4, 6, 8, 9, 12, 18, 27, 1, 19, 1, 2, 4, 5, 8, 10, 20, 25, 50, 125
Offset: 1
Examples
Triangle begins: n row n of this sequence: ------------------------------------------- 1: 1; 2: 1, 2; 3: 1, 3; 4: 1, 2 4; 5: 1, 5; 6: 1, 2, 3, 4, 6, 9; 7: 1, 7; 8: 1, 2, 4, 8; 9: 1, 3, 9; 10: 1, 2, 4, 5, 10, 25; 11: 1, 11; 12: 1, 2, 3, 4, 6, 8, 9, 12, 18, 27; ... Row n = 10 of this sequence, presented according to 2^k, k = 0..bigomega(n) by columns, 5^i, i = 0..bigomega(n) by rows, showing terms m > n with an asterisk. The remaining m and the parenthetic 8 are in row 10 of A162306: 1 2 4 (8) 5 10 25* Row n = 12 of this sequence, presented according to 2^k, k = 0..bigomega(n) by columns, 3^i, i = 0..bigomega(n) by rows, showing terms m > n with an asterisk. The remaining m are in row 12 of A162306: 1 2 4 8 3 6 12 9 18* 27*
Links
- Michael De Vlieger, Table of n, a(n) for n = 1..17475 (rows n = 1..1000, flattened)
- Michael De Vlieger, Log log scatterplot of rows n = 1..2^16 of this sequence, flattened, (3153752 terms).
Crossrefs
Programs
-
Mathematica
Table[Clear[p]; MapIndexed[Set[p[First[#2]], #1] &, FactorInteger[n][[All, 1]]]; k = PrimeOmega[n]; w = PrimeNu[n]; Union@ Map[Times @@ MapIndexed[p[First[#2]]^#1 &, #] &, Select[Tuples[Range[0, k], w], Total[#] <= k &] ], {n, 120}]
Comments