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!)
A120124 Smallest prime p such that p*10^n + 1 is a prime. 1
3, 7, 3, 7, 7, 61, 3, 7, 7, 3, 19, 37, 109, 79, 97, 13, 37, 19, 73, 103, 97, 283, 157, 61, 19, 61, 1213, 3, 163, 691, 367, 163, 181, 157, 241, 3, 103, 733, 151, 283, 337, 193, 211, 163, 7, 73, 307, 61, 223, 1549, 31, 127, 13, 547, 103, 151, 193, 811, 337, 19, 1021, 151 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
All terms belong to A007645. All terms also belong to A055664. Also many terms including the first 14 smallest primes from 3 to 139 {3,7,13,19,31,37,43,61,73,79,97,103,127,139} belong tpA023203. The smallest term that differs from A023203 is 151.
LINKS
Robert Israel, Table of n, a(n) for n = 1..1000 (first 300 terms from Vincenzo Librandi)
EXAMPLE
a(1) = 3 because 31 = 3*10 + 1 is the smallest prime of form p*10 + 1, where p is a prime.
a(2) = 7 because 701 = 7*100 + 1 is the smallest prime of form p*100 + 1.
MAPLE
Primes:= select(isprime, [$1..10^5]):
for n from 1 to 1000 do
for p in Primes do
if isprime(p*10^n+1) then
A[n]:= p
fi
od
od:
seq(A[n], n=1..1000); # Robert Israel, May 29 2014
MATHEMATICA
prs=Prime[Range[2000]]; Table[i=1; While[!PrimeQ[First[Take[prs, {i}]] 10^n+1], i++]; Prime[i], {n, 200}] (* Harvey P. Dale, May 15 2011 *)
CROSSREFS
Sequence in context: A200481 A016665 A320831 * A151573 A113832 A115631
KEYWORD
nonn
AUTHOR
Alexander Adamchuk, Aug 15 2006
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 08:59 EDT 2024. Contains 371935 sequences. (Running on oeis4.)