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!)
A216625 Triangle read by rows, n >= 1, 1 <= k <= n, T(n,k) = Sum_{c|n,d|k} gcd(c,d). 8
1, 2, 5, 2, 4, 6, 3, 8, 6, 15, 2, 4, 4, 6, 8, 4, 10, 12, 16, 8, 30, 2, 4, 4, 6, 4, 8, 10, 4, 11, 8, 22, 8, 22, 8, 37, 3, 6, 10, 9, 6, 20, 6, 12, 23, 4, 10, 8, 16, 16, 20, 8, 22, 12, 40, 2, 4, 4, 6, 4, 8, 4, 8, 6, 8, 14, 6, 16, 18, 30, 12, 48, 12, 44, 30, 32 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
This is the lower triangular array of A216624, which is the main entry for this sequence.
T(n,1) = A000005(n) = tau(n).
T(n,n) = A060724(n) = Sum_{d|n} d*tau((n/d)^2).
LINKS
EXAMPLE
The first rows of the triangle are:
1;
2, 5;
2, 4, 6;
3, 8, 6, 15;
2, 4, 4, 6, 8;
4, 10, 12, 16, 8, 30;
2, 4, 4, 6, 4, 8, 10;
4, 11, 8, 22, 8, 22, 8, 37;
3, 6, 10, 9, 6, 20, 6, 12, 23;
MAPLE
with(numtheory):
T:= (n, k)-> add(add(igcd(c, d), c=divisors(n)), d=divisors(k)):
seq (seq (T(n, k), k=1..n), n=1..14); # Alois P. Heinz, Sep 12 2012
MATHEMATICA
T[n_, k_] := Sum[GCD[c, d], {c, Divisors[n]}, {d, Divisors[k]}]; Table[T[n, k], {n, 1, 14}, {k, 1, n}] // Flatten (* Jean-François Alcover, Mar 25 2014 *)
PROG
(Sage)
for n in (1..9): [A216624(n, k) for k in (1..n)]
CROSSREFS
Sequence in context: A085072 A077200 A275748 * A122581 A151871 A220247
KEYWORD
nonn,tabl
AUTHOR
Peter Luschny, Sep 12 2012
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 August 26 22:10 EDT 2024. Contains 375462 sequences. (Running on oeis4.)