login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A352710
Least k such that A352483(k) = 2*n-1, or -1 if no such k exists.
1
3, 5, 7, 20, 11, 13, 32, 17, 19, 44, 23, 27, 216, 29, 31, 35, 280, 37, 117, 41, 43, 92, 47, 51, 153, 53, 57, 116, 59, 61, 65, 520, 67, 207, 71, 73, 77, 616, 79, 164, 83, 87, 261, 89, 93, 95, 760, 97, 105, 101, 103, 212, 107, 109, 333, 113, 920, 119, 952, 123, 125, 1000, 127, 135, 131
OFFSET
1,1
LINKS
FORMULA
a(n) = A351913(2*n-1).
PROG
(PARI) f(n) = my(d=numdiv(n)); denominator(n*d/(n-d)); \\ A352483
a(n) = {my(k=3, q=2*n-1); while (f(k) != q, k++); k; }
CROSSREFS
Cf. A352483.
Bisection of A351913.
Sequence in context: A072002 A217651 A362417 * A163637 A336985 A360929
KEYWORD
nonn
AUTHOR
Michel Marcus, Mar 30 2022
STATUS
approved