The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A115062 Prime nearest to 10^n. In case of a tie, choose the smaller. 2
2, 11, 101, 997, 10007, 100003, 1000003, 9999991, 100000007, 1000000007, 10000000019, 100000000003, 999999999989, 9999999999971, 99999999999973, 999999999999989, 10000000000000061, 99999999999999997, 1000000000000000003, 9999999999999999961 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
LINKS
FORMULA
a(n) = 10^n + A117190(n).
MAPLE
a:= n-> (t->((p, q)->`if`(q-t<t-p, q, p))(`if`(t=1, -1,
prevprime(t)), nextprime(t)))(10^n):
seq(a(n), n=0..25); # Alois P. Heinz, Aug 13 2014
MATHEMATICA
Table[Min[Nearest[{NextPrime[10^n], NextPrime[10^n, -1]}, 10^n]], {n, 0, 20}] (* Harvey P. Dale, Mar 14 2023 *)
PROG
(PARI) for(n=0, 20, a=10^n-precprime(10^n); b=nextprime(10^n)-10^n; if(a<=b && n!=0, print1(precprime(10^n), ", "), print1(nextprime(10^n), ", "))) \\ Felix Fröhlich, Aug 13 2014
CROSSREFS
Sequence in context: A036953 A368879 A254320 * A062397 A158578 A003617
KEYWORD
nonn
AUTHOR
Lekraj Beedassy, Mar 01 2006
EXTENSIONS
More terms from Giovanni Resta and Rick L. Shepherd, Mar 01 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 May 23 01:37 EDT 2024. Contains 372758 sequences. (Running on oeis4.)