A307223 Irregular table T(n, k) read by rows: n-th row gives number of subsets of the divisors of n which sum to k for 1 <= k <= sigma(n).
1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 2, 1, 1, 2, 1, 1, 2, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 0, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1
Offset: 1
Examples
Table begins as: 1 1,1,1 1,0,1,1 1,1,1,1,1,1,1 1,0,0,0,1,1 1,1,2,1,1,2,1,1,2,1,1,1 1,0,0,0,0,0,1,1 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 1,0,1,1,0,0,0,0,1,1,0,1,1 1,1,1,0,1,1,1,1,0,1,1,1,1,0,1,1,1,1
Links
- Amiram Eldar, Table of n, a(n) for n = 1..8299 (rows 1..100 flattened)
Crossrefs
Programs
-
Mathematica
T[n_,k_] := Module[{d = Divisors[n]}, SeriesCoefficient[Series[Product[1 + x^d[[i]], {i, Length[d]}], {x, 0, k}], k]]; Table[T[n, k], {n,1,10}, {k, 1, DivisorSigma[1,n]}] // Flatten
Comments