A127466 Triangle read by rows: A054525 * A127481 as infinite lower triangular matrices.
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
Examples
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; ...
Programs
-
Maple
A127466 := proc(n,k) add( A054525(n,j)*A127481(j,k),j=k..n) ; end proc: # R. J. Mathar, Sep 06 2013
Formula
Sum_{k=1..n} T(n,k) = n^2.
T(n,n) = A002618(n) = n*phi(n).
Extensions
Edited by N. J. A. Sloane at the suggestion of Andrew S. Plewe, Aug 23 2007
Comments