A191973 Irregular triangle read by rows: row n consists of n and the positive integers m where m-n divides m*n.
1, 2, 1, 2, 3, 4, 6, 2, 3, 4, 6, 12, 2, 3, 4, 5, 6, 8, 12, 20, 4, 5, 6, 10, 30, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 15, 18, 24, 42, 6, 7, 8, 14, 56, 4, 6, 7, 8, 9, 10, 12, 16, 24, 40, 72, 6, 8, 9, 10, 12, 18, 36, 90, 5, 6, 8, 9, 10, 11, 12, 14, 15, 20, 30, 35, 60
Offset: 1
Examples
The triangle begins: 1 2 1 2 3 4 6 2 3 4 6 12 2 3 4 5 6 8 12 20 4 5 6 10 30 2 3 4 5 6 7 8 9 10 12 15 18 24 42 6 7 8 14 56 ...
Links
- Nathaniel Johnston, Rows 1..250, flattened
Crossrefs
Programs
-
Maple
for n from 1 to 10 do for m from 1 to n*(n+1) do if(n=m or m*n mod (m-n) = 0)then printf("%d, ",m): fi: od: od:
Comments