A180469 Primes of the form 100p + 1, where p is prime.
701, 1301, 1901, 3701, 6101, 6701, 7901, 10301, 13901, 15101, 16301, 19301, 21101, 22901, 27701, 42101, 46301, 52301, 54101, 60101, 64301, 70901, 72701, 81101, 82301, 87701, 88301, 93701, 102101, 112901, 115301, 117101, 123701, 132701
Offset: 1
Examples
Example: 7*100 + 1 = 701 is prime, and is therefore a term.
Links
- Kevin Batista, Table of n, a(n) for n = 1..20000
Crossrefs
Subsequence of A158128.
Programs
-
PARI
forprime(p=2,1e4,k=100*p+1;if(isprime(k),print1(k",")))