OFFSET
0,5
COMMENTS
As n, respectively k, increases, the reversed rows, respectively columns, approach the same limit, given by A052130. - Peter Munn, Mar 26 2026
REFERENCES
Adolf Hildebrand, On the number of prime factors of an integer. Ramanujan revisited (Urbana-Champaign, Ill., 1987), 167 - 185, Academic Press, Boston, MA, 1988.
Edmund Georg Hermann Landau, Handbuch der Lehre von der Verteilung der Primzahlen, Chelsea Publishing, NY 1953, pp. 205 - 211.
LINKS
Michael De Vlieger, Table of n, a(n) for n = 0..377 (rows n = 0..26, flattened)
FORMULA
T(n,0) = 1; T(n,1) = A007053(n,1) for n>0; T(n,n) = 1.
Sum_{k=0..n} T(n,k) = 2^n.
EXAMPLE
Triangle starts:
1;
1, 1;
1, 2, 1;
1, 4, 2, 1;
1, 6, 6, 2, 1;
1, 11, 10, 7, 2, 1;
1, 18, 22, 13, 7, 2, 1;
1, 31, 42, 30, 14, 7, 2, 1;
1, 54, 82, 60, 34, 15, 7, 2, 1;
...
MATHEMATICA
row[n_] := Module[{i, v = Table[0, {n}]}, For[i = 2, i <= 2^n, i++, v[[PrimeOmega[i]]]++]; Prepend[v, 1]];
Table[row[n], {n, 0, 12}] // Flatten (* Jean-François Alcover, Sep 23 2021, after PARI code *)
PROG
(PARI) row(n) = {v = vector(n); for (i=2, 2^n, v[bigomega(i)]++; ); concat(1, v); }
tabl(nn) = for (n=0, nn, print(row(n))); \\ Michel Marcus, Aug 11 2015
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Reinhard Zumkeller, Mar 27 2004
STATUS
approved
