login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A127528 Triangle T(n,k) read by rows: tau(n)*phi(n/k) if k|n, else 0. 2
1, 2, 2, 4, 0, 2, 6, 3, 0, 3, 8, 0, 0, 0, 2, 8, 8, 4, 0, 0, 4, 12, 0, 0, 0, 0, 0, 2, 16, 8, 0, 4, 0, 0, 0, 4, 18, 0, 6, 0, 0, 0, 0, 0, 3, 16, 16, 0, 0, 4, 0, 0, 0, 0, 4, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 24, 12, 12, 12, 0, 6, 0, 0, 0, 0, 0, 6, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 24, 24 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
T(n,k) = A000005(n) * A054523(n,k).
T(n,1) = A062355(n).
T(n,n) = A000005(n).
sum_{k=1..n} T(n,k) = A038040(n).
EXAMPLE
First few rows of the triangle are:
1;
2, 2;
4, 0, 2;
6, 3, 0, 3;
8, 0, 0, 0, 2;
8, 8, 4, 0, 0, 4;
12, 0, 0, 0, 0, 0, 2;
...
MAPLE
A127528 := proc(n, k) if n mod k = 0 then numtheory[tau](n)*numtheory[phi](n/k) ; else 0; end if; end proc:
seq(seq(A127528(n, k), k=1..n), n=1..15) ; # R. J. Mathar, Feb 05 2011
CROSSREFS
Sequence in context: A279906 A246846 A292474 * A063070 A049802 A129240
KEYWORD
nonn,tabl,easy
AUTHOR
Gary W. Adamson, Jan 17 2007
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 2 08:27 EDT 2024. Contains 372178 sequences. (Running on oeis4.)