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”).

A103004
Numbers n such that 5*10^n + 9 is prime.
1
1, 2, 3, 5, 8, 20, 29, 86, 283, 757, 1199, 2473, 2733, 24853, 39629, 53492, 71237, 72302, 81653, 167510
OFFSET
1,2
COMMENTS
a(21) > 2*10^5. - Robert Price, Aug 10 2015
LINKS
FORMULA
a(n) = A101569(n) + 1.
MATHEMATICA
Do[ If[ PrimeQ[5*10^n + 3], Print[n]], {n, 0, 10000}]
PROG
(PARI) is_ok(n)=isprime(5*10^n + 9);
first(m)=my(v=vector(m), t); for(i=1, m, while(!is_ok(t), t++; ); v[i]=t; t++); v; /* Anders Hellström, Aug 10 2015 */
CROSSREFS
Cf. A101569.
Sequence in context: A049908 A334535 A135568 * A102016 A002363 A041457
KEYWORD
more,nonn
AUTHOR
Robert G. Wilson v, Jan 18 2005
EXTENSIONS
a(14)-a(19) from Kamada data by Robert Price, Dec 10 2010
a(20) from Robert Price, Aug 10 2015
STATUS
approved