OFFSET
1,3
COMMENTS
The number of terms in row n is A346729(n).
LINKS
Alois P. Heinz, Rows n = 1..26, flattened
FORMULA
T(n,2) = A162145(n) for n > 1.
T(n,n) = A300509(n).
Sum_{k>=1} k * T(n,k) = A153876(n). - Alois P. Heinz, Aug 01 2021
EXAMPLE
There are four 3-bit numbers: 4 = 100_2, 5 = 101_2 = 5, 6 = 110_2, 7 = 111_2. 5 and 7 are both prime, so each has 2 divisors; 4 = 2^2 has 3 divisors (1, 2, and 4), and 6 = 2*3 has 4 divisors (1, 2, 3, and 6). Thus, among the 3-bit numbers, the counts of those having 1, 2, 3, and 4 divisors are 0, 2, 1, and 1, respectively, so the 3rd row of the table is 0, 2, 1, 1.
Triangle begins:
1;
0, 2;
0, 2, 1, 1;
0, 2, 1, 4, 0, 1;
0, 5, 1, 4, 1, 3, 0, 2;
0, 7, 1, 11, 0, 6, 0, 4, 1, 1, 0, 1;
0, 13, 1, 20, 1, 9, 1, 9, 1, 2, 0, 6, 0, 0, 0, 1;
MAPLE
T:= n-> (p-> seq(coeff(p, x, i), i=1..degree(p)))(add
(x^numtheory[tau](i), i=2^(n-1)..2^n-1)):
seq(T(n), n=1..10); # Alois P. Heinz, Jul 31 2021
MATHEMATICA
Map[BinCounts[#, {0, Max[#] + 1, 1}] &, Table[DivisorSigma[0, 2^n + k], {n, 0, 8}, {k, 0, 2^n - 1}]] // Flatten (* Michael De Vlieger, Aug 29 2021 *)
CROSSREFS
KEYWORD
nonn,base,tabf
AUTHOR
Jon E. Schoenfield, Jul 30 2021
STATUS
approved