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!)
A338797 Triangle read by rows: T(n,k) is the least m such that there exist positive integers x, y and z satisfying x/n + y/k = z/m where all fractions are reduced; 1 <= k <= n. 1
1, 2, 1, 3, 6, 1, 4, 4, 12, 1, 5, 10, 15, 20, 1, 6, 3, 2, 12, 30, 1, 7, 14, 21, 28, 35, 42, 1, 8, 8, 24, 8, 40, 24, 56, 1, 9, 18, 9, 36, 45, 18, 63, 72, 1, 10, 5, 30, 20, 2, 15, 70, 40, 90, 1, 11, 22, 33, 44, 55, 66, 77, 88, 99, 110, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
Peter Kagey, Table of n, a(n) for n = 1..10011 (first 141 rows, flattened)
FORMULA
A051537(n,k) <= T(n,k) <= A221918(n,k) <= lcm(n,k) = A051173(n,k).
T(n,k) = lcm(n,k) when gcd(n,k) = 1.
EXAMPLE
Table begins:
n\k| 1 2 3 4 5 6 7 8 9 10 11 12
---+-----------------------------------------------
1 | 1,
2 | 2, 1,
3 | 3, 6, 1,
4 | 4, 4, 12, 1,
5 | 5, 10, 15, 20, 1,
6 | 6, 3, 2, 12, 30, 1,
7 | 7, 14, 21, 28, 35, 42, 1,
8 | 8, 8, 24, 8, 40, 24, 56, 1,
9 | 9, 18, 9, 36, 45, 18, 63, 72, 1,
10 | 10, 5, 30, 20, 2, 15, 70, 40, 90, 1,
11 | 11, 22, 33, 44, 55, 66, 77, 88, 99, 110, 1,
12 | 12, 12, 4, 3, 60, 4, 84, 24, 36, 60, 132, 1.
T(20,10) = 4 because 1/20 + 7/10 = 3/4, and there is no choice of numerators on the left that results in a smaller denominator on the right.
PROG
(Haskell)
import Data.Ratio ((%), denominator)
farey n = [k % n | k <- [1..n], gcd n k == 1]
a338797T n k = minimum [denominator $ a + b | a <- farey n, b <- farey k]
CROSSREFS
Sequence in context: A322044 A010251 A051537 * A171999 A036038 A210237
KEYWORD
nonn,tabl
AUTHOR
Peter Kagey, Nov 09 2020
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 April 19 14:10 EDT 2024. Contains 371792 sequences. (Running on oeis4.)