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!)
A103961 Least k such that 2*n*k - 1 is a prime. 2
2, 1, 1, 1, 2, 1, 1, 2, 1, 1, 2, 1, 4, 3, 1, 1, 2, 2, 1, 2, 1, 1, 3, 1, 3, 2, 1, 3, 3, 1, 1, 2, 2, 1, 2, 1, 1, 2, 3, 1, 2, 1, 3, 3, 1, 4, 3, 2, 1, 2, 1, 1, 2, 1, 1, 2, 1, 3, 3, 2, 4, 5, 2, 1, 3, 1, 3, 2, 1, 1, 2, 3, 7, 3, 1, 1, 2, 2, 1, 3, 4, 1, 2, 1, 3, 5, 1, 7, 8, 1, 1, 2, 3, 3, 2, 1, 1, 3, 1, 1, 5, 5, 3, 5, 2 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Question: Is the sequence unbounded (like A016014)? - Dmitry Kamenetsky, Oct 26 2016
Answer: Yes. Essentially the same argument works. To get n such that a(n) > K, take distinct odd primes p_k, k=1..K with p_k not dividing k, and take n such that n == (2*k)^(-1) mod p_k and 2*k*n-1 > p_k for k=1..K. - Robert Israel, Oct 27 2016
LINKS
EXAMPLE
2*1*2-1 = 3, so a(1) = 2;
2*5*2-1 = 19, so a(5) = 2.
MATHEMATICA
Do[k = 1; cp = n*k - 1; While[ ! PrimeQ[cp], k++; cp = n*k - 1]; Print[k], {n, 2, 400, 2}]
lkp[n_]:=Module[{k=1}, While[!PrimeQ[2n*k-1], k++]; k]; Array[lkp, 120] (* Harvey P. Dale, Nov 13 2020 *)
PROG
(PARI) a(n) = {my(k=1); while (!isprime(2*n*k-1), k++); k; } \\ Michel Marcus, Oct 27 2016
CROSSREFS
Cf. A016014.
Sequence in context: A293811 A362228 A105141 * A012257 A220464 A215975
KEYWORD
easy,nonn
AUTHOR
Lei Zhou, Feb 23 2005
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 20 04:18 EDT 2024. Contains 371798 sequences. (Running on oeis4.)