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!)
A294488 Numbers k such that (73*10^k - 91)/9 is prime. 0
1, 3, 4, 6, 7, 10, 63, 84, 181, 186, 205, 235, 426, 612, 3379, 4203, 4410, 9091, 12640, 26386, 39069, 45451 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
For k>1, numbers such that the digit 8 followed by k-2 occurrences of the digit 1 followed by the digits 01 is prime (see Example section).
a(23) > 2*10^5.
LINKS
Makoto Kamada, Search for 81w01.
EXAMPLE
3 is in this sequence because (73*10^3 - 91)/9 = 8101 is prime.
Initial terms and primes associated:
a(1) = 1, 71;
a(2) = 3, 8101;
a(3) = 4, 81101;
a(4) = 6, 8111101;
a(5) = 7, 81111101; etc.
MATHEMATICA
Select[Range[1, 100000], PrimeQ[(73*10^# - 91)/9] &]
ParallelMap[If[PrimeQ[(73*10^# - 91)/9], #, Nothing] &, Range@100000] (* Robert G. Wilson v, Oct 31 2017 *)
PROG
(PARI) isok(n) = isprime((73*10^n - 91)/9); \\ Michel Marcus, Nov 01 2017
CROSSREFS
Sequence in context: A108588 A194095 A064404 * A364341 A335059 A047514
KEYWORD
nonn,more,hard
AUTHOR
Robert Price, Oct 31 2017
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 16 18:12 EDT 2024. Contains 371750 sequences. (Running on oeis4.)