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!)
A178570 Numbers k such that prime(k+1) == 1 (mod (prime(k+2) - prime(k))). 2
2, 3, 5, 7, 13, 20, 24, 26, 28, 30, 31, 32, 36, 41, 43, 49, 52, 62, 64, 67, 69, 73, 77, 81, 83, 86, 87, 89, 103, 105, 109, 116, 121, 129, 135, 142, 144, 148, 152, 156, 158, 159, 163, 168, 171, 173, 182, 190, 192, 196, 206, 208, 212, 215, 217, 219, 223, 225, 231, 234, 236 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
a(1)=2 because (prime(2+1) mod (prime(2+2) - prime(2))) = 5 mod 4 = 1.
MATHEMATICA
fQ[n_] := Mod[Prime[n+1], Prime[n+2] - Prime[n]] == 1; Select[ Range@ 250, fQ]
PROG
(PARI) isok(n) = prime(n+1) % (prime(n+2) - prime(n)) == 1; \\ Michel Marcus, Jan 31 2019
CROSSREFS
Cf. A067185.
Sequence in context: A341640 A104189 A301776 * A294443 A293160 A249309
KEYWORD
nonn
AUTHOR
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 10:22 EDT 2024. Contains 371967 sequences. (Running on oeis4.)