cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A127170 Triangle read by rows: T(n,k) is the number of divisors of n that are divisible by k, with 1 <= k <= n.

Original entry on oeis.org

1, 2, 1, 2, 0, 1, 3, 2, 0, 1, 2, 0, 0, 0, 1, 4, 2, 2, 0, 0, 1, 2, 0, 0, 0, 0, 0, 1, 4, 3, 0, 2, 0, 0, 0, 1, 3, 0, 2, 0, 0, 0, 0, 0, 1, 4, 2, 0, 0, 2, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 6, 4, 3, 2, 0, 2, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4, 2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 1
Offset: 1

Views

Author

Gary W. Adamson, Jan 06 2007

Keywords

Comments

Column k lists the terms of A000005 interleaved with k - 1 zeros.
Eigensequence of the triangle = A007557; i.e., sequence A007557 shifts to the left upon multiplication by A127170. - Gary W. Adamson, Apr 27 2009

Examples

			First 10 rows of the triangle:
  1;
  2, 1;
  2, 0, 1;
  3, 2, 0, 1;
  2, 0, 0, 0, 1;
  4, 2, 2, 0, 0, 1;
  2, 0, 0, 0, 0, 0, 1;
  4, 3, 0, 2, 0, 0, 0, 1;
  3, 0, 2, 0, 0, 0, 0, 0, 1;
  4, 2, 0, 0, 2, 0, 0, 0, 0, 1;
  ...
		

Crossrefs

Programs

Formula

A007429(n) = Sum_{i=1..n} i*a(i).
T(n,k) = A000005(n/k), if k divides n, otherwise 0, with n >= 1 and 1 <= k <= n. - Omar E. Pol, Apr 01 2015

Extensions

8 terms taken from Example section and then corrected in Data section by Omar E. Pol, Mar 30 2015
Extended beyond a(21) by Omar E. Pol, Apr 01 2015
New name (which was a comment dated Mar 30 2015) from Omar E. Pol, Feb 16 2022