OFFSET
1,2
COMMENTS
As an infinite lower triangular matrix T, some known sequence transforms:
T * [1/1, 1/2, 1/3, ...] = A007425;
T * [1, 2, 3, ...] = A007433;
In general, T * X applies the inverse Moebius transform twice to the termwise product of the vector X and the natural numbers. - Andrew Howroyd, Sep 23 2025
LINKS
Andrew Howroyd, Table of n, a(n) for n = 1..1275 (first 50 rows)
FORMULA
EXAMPLE
First few rows of the triangle:
1;
2, 2;
2, 0, 3;
3, 4, 0, 4;
2, 0, 0, 0, 5
4, 4, 6, 0, 0, 6;
2, 0, 0, 0, 0, 0, 7;
4, 6, 0, 8, 0, 0, 0, 8;
...
MATHEMATICA
A134577[n_, k_] := If[Divisible[n, k], DivisorSigma[0, n/k]*k, 0];
Table[A134577[n, k], {n, 15}, {k, n}] (* Paolo Xausa, Sep 23 2025 *)
PROG
(PARI) T(n, k)=if(n%k==0, numdiv(n/k)*k, 0) \\ Andrew Howroyd, Sep 23 2025
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Gary W. Adamson, Nov 02 2007
EXTENSIONS
New name and terms a(56) onwards from Andrew Howroyd, Sep 23 2025
STATUS
approved
