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!)
A178429 Numbers n such that 10^n - 51 is prime. 2
4, 48, 64, 313, 484, 642, 11950, 15845, 18580, 50929 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
10^4 - 51 = 9949 which is a prime number.
MAPLE
A178429:=n->`if`(isprime(10^n-51), n, NULL): seq(A178429(n), n=1..1000); # Wesley Ivan Hurt, Nov 26 2014
MATHEMATICA
m = 1000; For[n = 1, n < m, If[PrimeQ[10^n - 51], Print[n]]; n++ ]
PROG
(PARI) is(n)=ispseudoprime(10^n-51) \\ Charles R Greathouse IV, Jun 06 2017
CROSSREFS
Sequence in context: A358885 A358889 A225987 * A370417 A242225 A157818
KEYWORD
more,nonn
AUTHOR
Robert Price, Dec 21 2010
EXTENSIONS
a(10) = 50929 found by Robert Price and added by Patrick De Geest, Nov 26 2014
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 06:39 EDT 2024. Contains 371920 sequences. (Running on oeis4.)