[go: up one dir, main page]

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

A103068
Numbers n such that 8*10^n - 9 is prime.
1
1, 5, 11, 12, 17, 28, 46, 48, 61, 73, 138, 178, 213, 405, 762, 1053, 1157, 1427, 2865, 3148, 3615, 13447, 48081
OFFSET
1,2
COMMENTS
Also numbers n such that 7*10^n + 9*R_n - 8 is prime, where R_n = 11...1 is the repunit (A002275) of length n.
a(24) > 2*10^5. - Robert Price, Dec 19 2015
FORMULA
a(n) = A101154(n) + 1.
MATHEMATICA
Do[ If[ PrimeQ[8*10^n - 9], Print[n]], {n, 0, 10000}]
PROG
(PARI) is(n)=ispseudoprime(8*10^n-9) \\ Charles R Greathouse IV, Jun 12 2017
CROSSREFS
Sequence in context: A102175 A139200 A102181 * A277136 A176821 A070369
KEYWORD
more,nonn
AUTHOR
Robert G. Wilson v, Jan 19 2005
EXTENSIONS
a(22)-a(23) from Kamada data by Robert Price, Dec 14 2010
STATUS
approved