OFFSET
1,2
FORMULA
EXAMPLE
First few rows of the triangle are:
1;
3, 2;
4, 0, 6;
7, 6, 0, 8;
6, 0, 0, 0, 20,
12, 8, 18, 0, 0, 12;
8, 0, 0, 0, 0, 0, 42;
15, 14, 0, 24, 0, 0, 0, 32;
...
MAPLE
A127481 := proc(n, k)
a :=0 ;
for l from k to n do
if modp(n, l) =0 and modp(l, k) =0 then
a := a+l*numtheory[phi](k) ;
end if;
end do:
a ;
end proc: # R. J. Mathar, Sep 06 2013
CROSSREFS
KEYWORD
AUTHOR
Gary W. Adamson, Jan 15 2007
STATUS
approved