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!)
A116617 Values of n such that prime(2n+1) mod 12 = 11. 8
2, 4, 7, 8, 11, 19, 20, 21, 24, 34, 40, 41, 45, 51, 53, 54, 80, 85, 86, 92, 97, 102, 107, 109, 112, 119, 120, 126, 138, 140, 141, 149, 153, 154, 155, 157, 158, 164, 174, 178, 181, 188, 196, 197, 206, 208, 211, 213, 220, 226, 231, 236, 237, 239, 247, 253, 255, 259 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
40 is in the sequence because the 81st prime is 419 and 419 mod 12 = 11.
MAPLE
a:=proc(n) if ithprime(2*n+1) mod 12 = 11 then n else fi end: seq(a(n), n=0..310);
MATHEMATICA
Select[Range[1, 500], Mod[Prime[2*# + 1], 12] == 11 &] (* G. C. Greubel, Nov 19 2017 *)
PROG
(PARI) for(n=1, 500, print1(prime(2*n+1)%12==11, ", ")) \\ G. C. Greubel, Nov 19 2017
CROSSREFS
Sequence in context: A118248 A132679 A216576 * A091996 A085262 A344155
KEYWORD
nonn
AUTHOR
Roger L. Bagula, Mar 29 2006
EXTENSIONS
Edited by N. J. A. Sloane, Apr 05 2006
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 23 05:59 EDT 2024. Contains 371906 sequences. (Running on oeis4.)