The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A350900 Triangle read by rows: T(n, k) = Sum_{i=1..n} gcd(i,n) / gcd(gcd(i,k),n) for 1 <= k <= n. 0
1, 3, 2, 5, 5, 3, 8, 5, 8, 4, 9, 9, 9, 9, 5, 15, 10, 9, 10, 15, 6, 13, 13, 13, 13, 13, 13, 7, 20, 12, 20, 9, 20, 12, 20, 8, 21, 21, 11, 21, 21, 11, 21, 21, 9, 27, 18, 27, 18, 15, 18, 27, 18, 27, 10, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 11, 40, 25, 24, 20, 40, 15, 40, 20, 24, 25, 40, 12 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Subtriangle (triangle without main diagonal) is symmetrical.
Conjecture: Let f be an arbitrary arithmetic function. Define for n > 0 the sequence a(f; n) = Sum_{i=1..n, k=1..n} f(gcd(i,n)/gcd(gcd(i,k),n)); a(f; n) equals Dirichlet convolution of f(n)*A000010(n) and A057660(n); if f is multiplicative, then a(f; n) is multiplicative; row sums of this triangle use f(n) = n (see formula section).
LINKS
FORMULA
T(n, 1) = A018804(n); T(n, n) = n.
T(n, k) = T(n, n-k) for 1 <= k < n.
Conjecture: Row sums equal Dirichlet convolution of A002618 and A057660.
EXAMPLE
The triangle T(n, k) for 1 <= k <= n starts:
n \k : 1 2 3 4 5 6 7 8 9 10 11 12
======================================================
1 : 1
2 : 3 2
3 : 5 5 3
4 : 8 5 8 4
5 : 9 9 9 9 5
6 : 15 10 9 10 15 6
7 : 13 13 13 13 13 13 7
8 : 20 12 20 9 20 12 20 8
9 : 21 21 11 21 21 11 21 21 9
10 : 27 18 27 18 15 18 27 18 27 10
11 : 21 21 21 21 21 21 21 21 21 21 11
12 : 40 25 24 20 40 15 40 20 24 25 40 12
etc.
PROG
(PARI) T(n, k) = sum(i=1, n, gcd(i, n) / gcd(gcd(i, k), n));
row(n) = vector(n, k, T(n, k)); \\ Michel Marcus, Jan 22 2022
CROSSREFS
Sequence in context: A132778 A182289 A127738 * A001598 A141297 A303917
KEYWORD
nonn,easy,tabl
AUTHOR
Werner Schulte, Jan 21 2022
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 16 17:27 EDT 2024. Contains 372554 sequences. (Running on oeis4.)