login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A103069
Numbers n such that 8*10^n + 3 is prime.
1
0, 1, 31, 105, 113, 369, 1359, 6219, 105571, 150975
OFFSET
1,3
COMMENTS
a(11) > 2*10^5. - Robert Price, Aug 19 2015
FORMULA
a(n) = A101056(n-1) + 1, for n>1.
EXAMPLE
For n = 2 we have 8*10^1+3 = 8*10+3 = 83, which is prime.
MATHEMATICA
Do[ If[ PrimeQ[ 8*10^n + 3], Print[ n ]], {n, 0, 10000}]
PROG
(PARI) is(n)=ispseudoprime(8*10^n+3) \\ Charles R Greathouse IV, Jun 12 2017
CROSSREFS
Cf. A101056.
Sequence in context: A075936 A221902 A289134 * A206526 A141877 A057230
KEYWORD
more,nonn
AUTHOR
Robert G. Wilson v, Jan 19 2005
EXTENSIONS
Prepended a(1) = 0 by Robert Price, Aug 19 2015
a(9)-a(10) from Robert Price, Aug 19 2015
STATUS
approved