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

A367970
Least k such that 5*n*k+1 is a prime.
1
2, 1, 2, 2, 4, 1, 2, 1, 4, 2, 6, 1, 2, 1, 2, 3, 12, 2, 2, 1, 2, 3, 4, 2, 2, 1, 2, 2, 10, 1, 2, 4, 2, 6, 4, 1, 8, 1, 6, 2, 4, 1, 2, 3, 8, 2, 4, 1, 2, 1, 4, 2, 4, 1, 12, 1, 2, 5, 4, 2, 6, 1, 2, 2, 4, 1, 6, 3, 2, 2, 6, 5, 18, 4, 2, 2, 6, 3, 6, 1, 2, 2, 28, 1, 6
OFFSET
1,1
LINKS
MATHEMATICA
A367970 = {};
Do[k=1; While[!PrimeQ[5 n k+1], k++]; AppendTo[A367970 , k], {n, 85}];
PROG
(PARI) a(n) = my(k=1); while (!isprime(5*n*k+1), k++); k; \\ Michel Marcus, Dec 17 2023
CROSSREFS
A070849 lists the corresponding primes.
Sequence in context: A255723 A309022 A214718 * A345161 A321319 A048896
KEYWORD
nonn
AUTHOR
Robert Price, Dec 17 2023
STATUS
approved