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!)
A359702 Odd primes p that are not congruent to 2*k modulo prime(k+1) for any positive integer k. 0
3, 7, 31, 37, 43, 61, 67, 73, 157, 211, 271, 277, 331, 367, 421, 457, 571, 691, 823, 883, 997, 1093, 1201, 1237, 1303, 1657, 1783, 2053, 2287, 2347, 2371, 2377, 2557, 2803, 2971, 3001, 3061, 3067, 3307, 3313, 3391, 3967, 4021, 4231, 4273, 4357, 4447, 4561, 4603 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
This sequence arises from a more general study. First, consider a function f : P -> N (where P is the set of the odd prime numbers) such that 0 <= f(p) < p. Then, remove from the set P each prime number q such that q = f(p) (mod p) for some p.
For example, if f(p) = 0 for each p, then the final set is the empty set.
If f(p) = 1 for each p, then the final set seems to be the set of Fermat primes (empirical observation).
If f(p) = p-1, then the final set seems to be the set of Mersenne primes (empirical observation).
For the particular choice f(p) = 2k (where p is the k-th odd prime) this sequence is obtained.
LINKS
EXAMPLE
Terms in this sequence are those odd primes that are neither congruent to 2 (mod 3), nor congruent to 4 (mod 5), nor congruent to 6 (mod 7), nor congruent to 8 (mod 11), etc.
7 is a term because 7 == 1 (mod 3) and 7 == 2 (mod 5).
11 is not a term because 11 == 2 (mod 3).
13 is not a term because 13 == 6 (mod 7).
17 is not a term because 17 == 2 (mod 3).
19 is not a term because 19 == 8 (mod 11).
PROG
(PARI) isok(p) = {if(!isprime(p)||p==2, 0, my(k=0); forprime(q=3, p-1, k+=2; if(p%q==k, return(0))); 1) } \\ Andrew Howroyd, Jan 11 2023
CROSSREFS
Sequence in context: A138862 A080173 A023266 * A217198 A110581 A128436
KEYWORD
nonn
AUTHOR
Andrea La Rosa, Jan 11 2023
EXTENSIONS
Terms a(15) and beyond from Andrew Howroyd, Jan 11 2023
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 25 12:53 EDT 2024. Contains 371969 sequences. (Running on oeis4.)