OFFSET
1,2
COMMENTS
The number of terms in the n-th row <= tau(n).
LINKS
Alois P. Heinz, Rows n = 1..2700
EXAMPLE
Triangle begins:
1;
2, 1;
3, 1;
4, 3, 1;
5, 1;
6, 4, 5, 1;
7, 1;
8, 4, 7, 1;
9, 7, 1,
10, 9, 7, 1;
11, 1;
12, 10, 9, 11, 1;
...
Row 12 has only 5 terms and tau(12) = 6.
PROG
(PARI) print(1, ", "); for(i=2, 50, v=[1]; for(j=2, sigma(i, 0), forstep(k=i, 1, -1, if(sigma(k, 0)==j, v=concat(v, k); break))); forstep(l=length(v), 1, -1, print1(v[l], ", ")); print()) \\ Lambert Herrgesell (zero815(AT)googlemail.com), Mar 13 2006
CROSSREFS
KEYWORD
AUTHOR
Amarnath Murthy, Feb 03 2003
EXTENSIONS
More terms from Lambert Herrgesell (zero815(AT)googlemail.com), Mar 13 2006
Offset corrected by Andrew Howroyd, Sep 29 2024
Name clarified by Sean A. Irvine, Aug 26 2025
STATUS
approved
