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!)
A278470 Numbers n such that 10^n - 201 is prime. 2
13, 20, 40, 43, 73, 85, 576, 1676 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
For n>2, numbers such that n-3 occurrences of the digit 9 followed by the digits 799 is prime.
a(9) > 10000. - Robert G. Wilson v, Nov 24 2016
LINKS
EXAMPLE
13 is in this sequence because 10^13 - 201 = 9999999999799 is prime.
Initial terms and primes associated:
a(1) = 13, 9999999999799;
a(2) = 20, 99999999999999999799;
a(3) = 40, 9999999999999999999999999999999999999799; etc.
MAPLE
A278470:=n->`if`(isprime(10^n-201), n, NULL): seq(A278470(n), n=1..10^3); # Wesley Ivan Hurt, Dec 08 2016
MATHEMATICA
Select[Range[3, 2000], PrimeQ[10^# - 201] &]
PROG
(Magma) [n: n in [3..500] | IsPrime(10^n-201)];
(PARI) is(n)=ispseudoprime(10^n-201) \\ Charles R Greathouse IV, Jun 06 2017
CROSSREFS
Cf. A108327 (10^n-21), this sequence (10^n-201), A278397 (10^n-20001), A278471 (10^n-2001).
Sequence in context: A164469 A164462 A132946 * A066515 A166656 A346401
KEYWORD
nonn,more
AUTHOR
Vincenzo Librandi, Nov 23 2016
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 17 23:23 EDT 2024. Contains 371767 sequences. (Running on oeis4.)