A330394 Irregular triangle T(n,k) read by rows in which n-th row lists in increasing order all integers m such that Omega(m) = n and each prime factor p of m has index pi(p) <= n.
1, 2, 4, 6, 9, 8, 12, 18, 20, 27, 30, 45, 50, 75, 125, 16, 24, 36, 40, 54, 56, 60, 81, 84, 90, 100, 126, 135, 140, 150, 189, 196, 210, 225, 250, 294, 315, 350, 375, 441, 490, 525, 625, 686, 735, 875, 1029, 1225, 1715, 2401, 32, 48, 72, 80, 108, 112, 120, 162
Offset: 0
Examples
Triangle T(n,k) begins: 1; 2; 4, 6, 9; 8, 12, 18, 20, 27, 30, 45, 50, 75, 125; ...
Links
- Robert Price, Table of n, a(n) for n = 0..8788
Crossrefs
Programs
-
Maple
b:= proc(n, i) option remember; `if`(n=0, [1], [seq( map(x-> x*ithprime(j), b(n-1, j))[], j=1..i)]) end: T:= n-> sort(b(n$2))[]: seq(T(n), n=0..5); # Alois P. Heinz, Mar 03 2020
-
Mathematica
t = Table[Union[Apply[Times, Tuples[Prime[Range[n]], {n}], {1}]], {n, 0, 5}]; t // TableForm Flatten[t]
Comments