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!)
A103070 Numbers n such that 8*10^n + 9 is prime. 1
0, 1, 2, 3, 6, 12, 20, 21, 37, 42, 55, 60, 98, 100, 104, 223, 237, 260, 501, 570, 600, 698, 8857, 20911, 24345, 31964, 67742, 162924 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
a(29) > 2*10^5. - Robert Price, Dec 18 2015
LINKS
Sabin Tabirca and Kieran Reynolds, Lacunary Prime Numbers.
FORMULA
a(n) = A101057(n-1) + 1, for n>1.
EXAMPLE
For n =0, 8*10^0 + 9 = 8 + 9 = 17, hence 0 is a term.
MATHEMATICA
Do[ If[ PrimeQ[ 8*10^n + 9], Print[ n ]], {n, 0, 10000}]
PROG
(PARI) for(n=0, 1e3, if(ispseudoprime(8*10^n + 9), print1(n, ", "))) \\ Altug Alkan, Dec 18 2015
(Magma) [n: n in [0..3*10^2] | IsPrime(8*10^n + 9)]; // Vincenzo Librandi, Dec 20 2015
CROSSREFS
Cf. A101057.
Sequence in context: A007335 A309311 A361693 * A233422 A361382 A079708
KEYWORD
more,nonn
AUTHOR
Robert G. Wilson v, Jan 19 2005
EXTENSIONS
a(23)-a(26) from Kamada data by Robert Price, Dec 14 2010
a(1) = 0 inserted and a(28) added by Robert Price, Dec 18 2015
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 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)