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!)
A140841 Primes of the form 210n + 13. 3
13, 223, 433, 643, 853, 1063, 1483, 1693, 2113, 2953, 3163, 3373, 3583, 3793, 4003, 4423, 5683, 6733, 7573, 7993, 8623, 9043, 9463, 9883, 10093, 10303, 10513, 10723, 11353, 12613, 12823, 13033, 13873, 14083, 14293, 14503, 14713, 14923, 15973 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
MAPLE
A140841 := proc(n) local a; if n = 1 then 13; else a := nextprime(procname(n-1)) ; while not a mod 210 in {13} do a := nextprime(a) ; end do: return a; end if; end: seq(A140841(n), n=1..80) ; # R. J. Mathar, Oct 22 2009
MATHEMATICA
Select[13+210Range[0, 150], PrimeQ] (* Ray Chandler, Apr 29 2010 *)
PROG
(PARI) forprime(p=1, 1e4, if(p%210==13, print1(p", "))) \\ Charles R Greathouse IV, Dec 21 2011
CROSSREFS
Sequence in context: A173427 A051180 A143832 * A062127 A178559 A068120
KEYWORD
nonn
AUTHOR
EXTENSIONS
More terms from R. J. Mathar, Oct 22 2009
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 24 11:01 EDT 2024. Contains 371936 sequences. (Running on oeis4.)