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!)
A296059 Numbers k such that (10^k/8 + 1)/9 is prime. 1
4, 7, 16, 43, 58, 106, 160, 229, 628, 1579, 3805, 16153, 31420 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Equivalently, numbers k such that (10^k + 8)/72 is prime.
a(12) > 15000. - Robert G. Wilson v, Dec 09 2017
a(14) > 10^5. - Robert Price, Apr 24 2018
LINKS
EXAMPLE
139, 138889, and 138888888888889 are prime, so 4, 7, and 16 are in the sequence.
MATHEMATICA
Select[Range[2000], PrimeQ[(10^#/8 + 1)/9] &] (* Michael De Vlieger, Dec 06 2017 *)
ParallelMap[ If[ PrimeQ[(10^#/8 +1)/9], #, Nothing] &, Range@ 10000] (* Robert G. Wilson v, Dec 08 2017 *)
PROG
(PARI) isok(k) = (k>2) && isprime((10^k/8 + 1)/9); \\ Michel Marcus, Dec 05 2017
CROSSREFS
Cf. A296029.
Sequence in context: A144916 A217289 A050357 * A132334 A289521 A097661
KEYWORD
nonn,more
AUTHOR
Patrick A. Thomas, Dec 04 2017
EXTENSIONS
a(8)-a(11) from Jon E. Schoenfield, Dec 04 2017
a(12)-a(13) from Robert Price, Apr 24 2018
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 18:59 EDT 2024. Contains 372765 sequences. (Running on oeis4.)