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!)
A270192 Numbers n for which (prime(n+1)-prime(n)) mod 3 = 2. 5
2, 3, 5, 7, 10, 13, 17, 20, 24, 26, 28, 30, 33, 35, 41, 43, 45, 49, 52, 57, 60, 62, 64, 66, 69, 72, 77, 79, 81, 83, 87, 89, 92, 94, 98, 104, 109, 113, 116, 120, 124, 126, 128, 132, 135, 137, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 162, 166, 171, 173, 176, 178, 182, 186, 190, 192, 196, 201, 206, 209, 212, 215, 220, 223, 225 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
2 is present as prime(3) - prime(2) = 5 - 3 = 2 = 2 modulo 3.
24 is present as prime(24) = 89, prime(25) = 97 and 97-89 = 8 = 2 modulo 3.
MATHEMATICA
Select[Range@ 225, Mod[Prime[# + 1] - Prime@ #, 3] == 2 &] (* Michael De Vlieger, Mar 17 2016 *)
Position[Differences[Prime[Range[300]]], _?(Mod[#, 3]==2&)]//Flatten (* Harvey P. Dale, Jul 22 2016 *)
PROG
(Scheme, with Antti Karttunen's IntSeq-library)
(define A270192 (MATCHING-POS 1 1 (lambda (n) (= 2 (A137264 n)))))
(PARI) isok(n) = ((prime(n+1) - prime(n)) % 3) == 2; \\ Michel Marcus, Mar 17 2016
CROSSREFS
Subsequence of A270189.
Positions of 2's in A137264.
Differs from its subsequence A029707 for the first time at n=9.
Sequence in context: A248360 A194238 A364090 * A053034 A029707 A175092
KEYWORD
nonn
AUTHOR
Antti Karttunen, Mar 16 2016
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 19 12:14 EDT 2024. Contains 371792 sequences. (Running on oeis4.)