login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A125093
Triangle T(n,k) = n*A054525(n,k) read by rows.
3
1, -2, 2, -3, 0, 3, 0, -4, 0, 4, -5, 0, 0, 0, 5, 6, -6, -6, 0, 0, 6, -7, 0, 0, 0, 0, 0, 7, 0, 0, 0, -8, 0, 0, 0, 8, 0, 0, -9, 0, 0, 0, 0, 0, 9, 10, -10, 0, 0, -10, 0, 0, 0, 0, 10, -11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 0, 12, 0, -12, 0, -12, 0, 0, 0, 0, 0, 12, -13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 14, -14, 0, 0, 0, 0, -14, 0, 0, 0, 0, 0, 0, 14, 15, 0, -15, 0
OFFSET
1,2
FORMULA
T(n,1) = n*mu(n) = A055615(n).
EXAMPLE
First few rows of the triangle are:
1;
-2, 2;
-3, 0, 3;
0, -4, 0, 4;
-5, 0, 0, 0, 5;
6, -6, -6, 0, 0, 6;
-7, 0, 0, 0, 0, 0, 7;
...
MAPLE
A125093 := proc(n, k) if n = k then n; elif n mod k = 0 then n*numtheory[mobius](n/k) ; else 0; end if; end proc:
seq(seq(A125093(n, k), k=1..n), n=1..16) ; # R. J. Mathar, Apr 10 2011
CROSSREFS
KEYWORD
tabl,easy,sign
AUTHOR
Gary W. Adamson, Jan 22 2007
EXTENSIONS
Offset and definition corrected by R. J. Mathar, Apr 10 2011
STATUS
approved