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!)
A093350 Primes congruent to 6 mod 13. 8
19, 71, 97, 149, 227, 331, 383, 409, 461, 487, 617, 643, 773, 877, 929, 1033, 1163, 1319, 1423, 1553, 1579, 1657, 1709, 1787, 2099, 2203, 2281, 2333, 2411, 2437, 2593, 2671, 2749, 2801, 2879, 2957, 3061, 3191, 3217 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Used in a primality test.
LINKS
Chris Caldwell, Prime Test.
MAPLE
p:=proc(n) if isprime(n)=true and n mod 13 = 6 then n else fi end:seq(p(n), n=1..4500); # Emeric Deutsch, Feb 28 2005
MATHEMATICA
Select[Range[6, 20000, 13], PrimeQ] (* Vladimir Joseph Stephan Orlovsky, Jun 18 2011 *)
PROG
(Magma) [p: p in PrimesUpTo(4500) | p mod 13 eq 6 ]; // Vincenzo Librandi, Aug 14 2012
(PARI) is(n)=isprime(n) && n%13==6 \\ Charles R Greathouse IV, Jul 01 2016
CROSSREFS
Sequence in context: A172078 A196136 A198002 * A226802 A342737 A142516
KEYWORD
nonn,easy
AUTHOR
Jun Mizuki (suzuki32(AT)sanken.osaka-u.ac.jp), Apr 26 2004
EXTENSIONS
Corrected and extended by Emeric Deutsch, Feb 28 2005
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 03:30 EDT 2024. Contains 371906 sequences. (Running on oeis4.)