A339304 Irregular triangle read by rows T(n,k) in which row n has length the partition number A000041(n-1) and columns k give the number of divisors function A000005, 1 <= k <= n.
1, 2, 2, 1, 3, 2, 1, 2, 2, 2, 1, 1, 4, 3, 2, 2, 2, 1, 1, 2, 2, 3, 2, 2, 2, 2, 1, 1, 1, 1, 4, 4, 2, 3, 3, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, 3, 2, 4, 2, 2, 3, 3, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 4, 4, 2, 4, 4, 2, 2, 3, 3, 3, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1
Offset: 1
Examples
Triangle begins: 1; 2; 2, 1; 3, 2, 1; 2, 2, 2, 1, 1; 4, 3, 2, 2, 2, 1, 1; 2, 2, 3, 2, 2, 2, 2, 1, 1, 1, 1; 4, 4, 2, 3, 3, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1; 3, 2, 4, 2, 2, 3, 3, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1; ...
Links
- Paolo Xausa, Table of n, a(n) for n = 1..11732 (rows 1..27 of the triangle, flattened)
Crossrefs
Programs
-
Mathematica
A339304row[n_]:=Flatten[Table[ConstantArray[DivisorSigma[0,n-m],PartitionsP[m]-PartitionsP[m-1]],{m,0,n-1}]];Array[A339304row,10] (* Paolo Xausa, Sep 01 2023 *)
Comments