login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A163612
Primes of form 5207*n + 1.
1
437389, 510287, 541529, 562357, 604013, 749809, 781051, 853949, 874777, 968503, 978917, 1030987, 1249681, 1322579, 1437133, 1541273, 1562101, 1655827, 1812037, 1947419, 1978661, 2030731, 2124457, 2166113, 2186941, 2280667, 2634743, 2655571, 2686813, 2759711
OFFSET
1,1
COMMENTS
5207*84+1=437389 is the first term in the sequence.
This is not a subsequence of A059236.
437389 = A059236(908), 510287 = A059236(1046), 541529 = A059236(1106).
3228341, 3624073 and 8091679 belong to this sequence but not to A059236. - Joerg Arndt and Arkadiusz Wesolowski, Jun 26 2011
LINKS
Arkadiusz Wesolowski, Table of n, a(n) for n = 1..1000
G. L. Honaker, Jr. and Chris Caldwell, Prime Curios! 5207
MATHEMATICA
Select[Table[5207*n + 1, {n, 0, 530, 2}], PrimeQ] (* Arkadiusz Wesolowski, Mar 05 2011 *)
PROG
(Magma) [5207*n+1 : n in [0..530 by 2] | IsPrime(5207*n+1)]; // Arkadiusz Wesolowski, Mar 05 2011
(PARI) forstep(n=0, 530, 2, if(isprime(x=(5207*n+1)), print1(x, ", "))); \\ Arkadiusz Wesolowski, Mar 05 2011
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved