cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-3 of 3 results.

A221919 Triangle of numerators of sum of two unit fractions: 1/n + 1/m, n >= m >= 1.

Original entry on oeis.org

2, 3, 1, 4, 5, 2, 5, 3, 7, 1, 6, 7, 8, 9, 2, 7, 2, 1, 5, 11, 1, 8, 9, 10, 11, 12, 13, 2, 9, 5, 11, 3, 13, 7, 15, 1, 10, 11, 4, 13, 14, 5, 16, 17, 2, 11, 3, 13, 7, 3, 4, 17, 9, 19, 1, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 2, 13, 7, 5, 1, 17, 1, 19, 5, 7, 11, 23, 1
Offset: 1

Views

Author

Wolfdieter Lang, Feb 21 2013

Keywords

Comments

The triangle of the corresponding denominators is given in A221918.
See A221918 for comments on resistance, reduced mass and radius of the twin circles in Archimedes's arbelos, as well as references.
The column sequences give A000027(n+1), A060819(n+2), A106610(n+3), A106617(n+4), A132739(n+5), A222464 for n >= m = 1,2,..., 6.

Examples

			The triangle a(n,m) begins:
n\m   1   2    3   4    5   6    7    8   9   10  11  12 ...
1:    2
2:    3   1
3:    4   5    2
4:    5   3    7   1
5:    6   7    8   9    2
6:    7   2    1   5   11   1
7:    8   9   10  11   12  13    2
8:    9   5   11   3   13   7   15    1
9:   10  11    4  13   14   5   16   17
10:  11   3   13   7    3   4   17    9  19    1
11:  12  13   14  15   16  17   18   15  20   21   2
12:  13   7    5   1   17   1   19    5   7   11  23   1
...
a(n,1) = n + 1 because R(n,1) = n/(n+1), gcd(n,n+1) = 1, hence denominator(R(n,m)) = n + 1.
a(5,4) = 9 because R(5,4) = 20/9, gcd(20,9) = 1, hence denominator( R(5,4)) = 9.
a(6,3) = 1 because R(6,3) = 18/9 = 2/1.
For the rationals R(n,m) see A221918.
		

Crossrefs

Cf. A221918 (companion triangle).

Programs

  • Mathematica
    a[n_, m_] := Numerator[1/n + 1/m]; Table[a[n, m], {n, 1, 12}, {m, 1, n}] // Flatten  (* Jean-François Alcover, Feb 25 2013 *)

Formula

a(n,m) = numerator(2/n + 1/m), n >= m >= 1, and 0 otherwise.
A221918(n,m)/a(n,m) = R(n,m) = n*m/(n+m). 1/R(n,m) = 1/n + 1/m.

A109050 a(n) = lcm(n, 9).

Original entry on oeis.org

0, 9, 18, 9, 36, 45, 18, 63, 72, 9, 90, 99, 36, 117, 126, 45, 144, 153, 18, 171, 180, 63, 198, 207, 72, 225, 234, 27, 252, 261, 90, 279, 288, 99, 306, 315, 36, 333, 342, 117, 360, 369, 126, 387, 396, 45, 414, 423, 144, 441, 450, 153, 468, 477, 54, 495, 504
Offset: 0

Views

Author

Mitch Harris, Jun 18 2005

Keywords

Crossrefs

Programs

Formula

a(n) = n*9/gcd(n, 9).
a(n) = 9*n/A109012(n) = 9*A106610(n). - R. J. Mathar, Apr 18 2011
Sum_{k=1..n} a(k) ~ (61/18) * n^2. - Amiram Eldar, Nov 26 2022
Sum_{n>=1} (-1)^(n+1)/a(n) = 7*log(2)/27. - Amiram Eldar, Sep 08 2023

A222464 a(n) = (n+6)/gcd(n*6,n+6), n >= 6.

Original entry on oeis.org

1, 13, 7, 5, 4, 17, 1, 19, 5, 7, 11, 23, 2, 25, 13, 3, 7, 29, 5, 31, 8, 11, 17, 35, 1, 37, 19, 13, 10, 41, 7, 43, 11, 5, 23, 47, 4, 49, 25, 17, 13, 53, 3, 55, 14, 19, 29, 59, 5, 61, 31, 7, 16, 65, 11, 67, 17, 23, 35, 71, 2, 73, 37, 25, 19, 77, 13, 79, 20, 9, 41
Offset: 6

Views

Author

Wolfdieter Lang, Feb 21 2013

Keywords

Comments

This is the sixth column (m=6) of the triangle A221919.

Examples

			a(10) = numerator(16/60) = numerator(4/15) = 4 = 16/gcd(60,16) = 16/gcd(36,16).
		

Crossrefs

Cf. A221919, A000027(n+1) (m=1), A060819(n+2) (m=2), A106610(n+3) (m=3), A106617(n+4) (m=4), A132739(n+5) (m=5).

Formula

a(n) = A221919(n,6) = denominator(n*6/(n+6)) = numerator(n+6/n*6) = (n+6)/gcd(n*6,n+6) = (n+6)/gcd(36,n+6), n >= 6.
Showing 1-3 of 3 results.