A378180 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, 1, 2, 1, 1, 2, 3, 1, 1, 2, 4, 1, 3, 1, 2, 5, 1, 1, 2, 3, 4, 6, 9, 1, 1, 2, 7, 1, 3, 5, 1, 2, 4, 8, 1, 1, 2, 3, 4, 6, 9, 1, 1, 2, 4, 5, 10, 25, 1, 3, 7, 1, 2, 11, 1, 1, 2, 3, 4, 6, 8, 9, 12, 18, 27, 1, 5, 1, 2, 13, 1, 3, 9, 1, 2, 4, 7, 14, 49, 1, 1, 2, 3, 4, 5, 6, 9, 10, 15, 25
Offset: 2
Examples
Select rows n, showing nondivisors k parenthetically (i.e., k not in row n of A027750), and numbers k > n in brackets (i.e., k neither in row n of A162306 nor in row n of A027750): n row n of this sequence: ------------------------------------------- 2: 1; 3: 1; 4: 1, 2; 6: 1, 2, 3; 8: 1, 2, 4; 9: 1, 3; 10: 1, 2, 5; 12: 1, 2, 3, 4, 6, (9); 18: 1, 2, 3, (4), 6, 9; 20: 1, 2, 4, 5, 10, [25]; 24: 1, 2, 3, 4, 6, 8, (9), 12, (18), [27]; 28: 1, 2, 4, 7, 14, [49]; 30: 1, 2, 3, (4), 5, 6, (9), 10, 15, (25); 36: 1, 2, 3, 4, 6, 8, 9, 12, 18, (27);
Links
- Michael De Vlieger, Table of n, a(n) for n = 2..10325
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