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!)
A142934 Primes congruent to 19 mod 64. 1
19, 83, 211, 467, 659, 787, 1171, 1427, 1619, 1747, 1811, 2003, 2131, 2579, 2707, 2963, 3347, 3539, 3923, 4051, 4243, 4691, 5011, 5651, 5779, 5843, 6163, 6547, 6803, 7187, 7507, 7699, 8147, 8467, 9043, 9491, 9619, 9811, 10067, 10259, 10771, 11027, 11411 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
MATHEMATICA
lst = {}; Do[p = Prime[n]; If[Mod[p, 64] == 19, AppendTo[lst, p]], {n, 7!}]; lst (* Vladimir Joseph Stephan Orlovsky, Feb 27 2009 *)
(* Somewhat faster program *) Select[Table[64n + 19, {n, 0, 200}], PrimeQ] (* Harvey P. Dale, Dec 13 2010 *)
Select[Prime[Range[1800]], MemberQ[{19}, Mod[#, 64]] &] (* Vincenzo Librandi, Sep 06 2012 *)
PROG
(Magma) [p: p in PrimesUpTo(12000) | p mod 64 eq 19 ]; // Vincenzo Librandi, Sep 06 2012
CROSSREFS
Cf. A000040.
Sequence in context: A044587 A142042 A352614 * A036564 A062639 A209369
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, Jul 11 2008
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 08:28 EDT 2024. Contains 371782 sequences. (Running on oeis4.)