Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
A138553
Table read by rows: T(n,k) is the number of divisors of k that are <= n.
3
1, 1, 2, 1, 2, 2, 2, 1, 3, 1, 2, 2, 3, 1, 3, 1, 3, 2, 2, 1, 4, 1, 2, 2, 3, 2, 3, 1, 3, 2, 3, 1, 4, 1, 2, 3, 3, 1, 3, 1, 4, 2, 2, 1, 4, 2, 2, 2, 3, 1, 4, 1, 3, 2, 2, 2, 4, 1, 2, 2, 4, 1, 3, 1, 3, 3, 2, 1, 4, 1, 3, 2, 3, 1, 3, 2, 3, 2, 2, 1, 5, 1, 2, 2, 3, 2, 4, 1, 3, 2, 3, 1, 5, 1, 2, 3, 3, 1, 4, 1, 4, 2, 2, 1, 5
OFFSET
1,3
COMMENTS
Suggested by a question from Eric Desbiaux.
The row lengths are the lengths before the pattern for n repeats.
Antidiagonal sums A070824. [From Eric Desbiaux, Dec 10 2009]
FORMULA
T(n,k) = sum_{i|k, i<=n} 1.
EXAMPLE
The first few rows start:
1, [A000012]
1, 2, [A000034]
1, 2, 2, 2, 1, 3, [A083039]
1, 2, 2, 3, 1, 3, 1, 3, 2, 2, 1, 4, [A083040]
PROG
(PARI) lista(nrows) = {for (n=1, nrows, for (k=1, lcm(vector(n, i, i)), print1(sumdiv(k, d, d <=n), ", "); ); print(); ); } \\ Michel Marcus, Jun 19 2014
CROSSREFS
Row lengths A003418, row sums A025529, frequencies in rows A096180.
Sequence in context: A334507 A342462 A239140 * A069016 A211270 A071414
KEYWORD
easy,nonn,tabf
AUTHOR
EXTENSIONS
Definition corrected by Franklin T. Adams-Watters, Jun 19 2014
STATUS
approved