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”).

A377865
Smallest divisor of 2n-1 greater than or equal to sqrt(2n-1).
1
1, 3, 5, 7, 3, 11, 13, 5, 17, 19, 7, 23, 5, 9, 29, 31, 11, 7, 37, 13, 41, 43, 9, 47, 7, 17, 53, 11, 19, 59, 61, 9, 13, 67, 23, 71, 73, 15, 11, 79, 9, 83, 17, 29, 89, 13, 31, 19, 97, 11, 101, 103, 15, 107, 109, 37, 113, 23, 13, 17, 11, 41, 25, 127, 43, 131, 19
OFFSET
1,2
FORMULA
a(n) = A033677(2n-1).
a(n) = A377499(n) + A219695(n).
MATHEMATICA
a[n_]:=Module[{k=1}, While[!Divisible[2n-1, k] || k<Sqrt[2n-1] , k++]; k]; Array[a, 67] (* Stefano Spezia, Nov 17 2024 *)
CROSSREFS
Odd bisection of A033677.
Sequence in context: A088836 A076565 A286517 * A199423 A100029 A099984
KEYWORD
nonn,easy
AUTHOR
Charles Kusniec, Nov 10 2024
STATUS
approved