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”).

A127466
Triangle read by rows: A054525 * A127481 as infinite lower triangular matrices.
5
1, 2, 2, 3, 0, 6, 4, 4, 0, 8, 5, 0, 0, 0, 20, 6, 6, 12, 0, 0, 12, 7, 0, 0, 0, 0, 0, 42, 8, 8, 0, 16, 0, 0, 0, 32, 9, 0, 18, 0, 0, 0, 0, 0, 54, 10, 10, 0, 0, 40, 0, 0, 0, 0, 40
OFFSET
1,2
COMMENTS
Mobius transform of A127481.
FORMULA
Sum_{k=1..n} T(n,k) = n^2.
T(n,n) = A002618(n) = n*phi(n).
EXAMPLE
First few rows of the triangle are:
1;
2, 2;
3, 0, 6;
4, 4, 0, 8;
5, 0, 0, 0, 20;
6, 6, 12, 0, 0, 12;
7, 0, 0, 0, 0, 0, 42;
8, 8, 0, 16, 0, 0, 0, 32;
...
MAPLE
A127466 := proc(n, k)
add( A054525(n, j)*A127481(j, k), j=k..n) ;
end proc: # R. J. Mathar, Sep 06 2013
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Gary W. Adamson, Jan 15 2007
EXTENSIONS
Edited by N. J. A. Sloane at the suggestion of Andrew S. Plewe, Aug 23 2007
STATUS
approved