A340896 Irregular triangle in which the n-th row consists of all multiples of n that have fewer than twice as many divisors as n.
1, 2, 4, 3, 9, 4, 8, 16, 5, 25, 6, 12, 18, 7, 49, 8, 16, 32, 64, 9, 27, 81, 10, 20, 50, 11, 121, 12, 24, 36, 48, 13, 169, 14, 28, 98, 15, 45, 75, 16, 32, 64, 128, 256, 17, 289, 18, 36, 54, 162, 19, 361, 20, 40, 80, 100, 21, 63, 147, 22, 44, 242, 23, 529
Offset: 1
Examples
Triangle begins: 1; 2, 4; 3, 9; 4, 8, 16; 5, 25; 6, 12, 18; 7, 49; 8, 16, 32, 64; 9, 27, 81; 10, 20, 50; 11, 121; 12, 24, 36, 48; 13, 169; 14, 28, 98; 15, 45, 75; 16, 32, 64, 128, 256; ...
Crossrefs
Programs
-
PARI
row(n) = select(x->((numdiv(x)<2*numdiv(n)) && !(x % n)), [1..n^2]); \\ Michel Marcus, Jan 26 2021
Comments