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

A259126
Numbers k such that 5*R_k + 3*10^k - 2 is prime, where R_k = 11...11 is the repunit (A002275) of length k.
0
2, 8, 140, 230, 426, 462, 726, 1974, 7230, 45860, 47304
OFFSET
1,1
COMMENTS
Also, numbers k such that (32*10^k - 23)/9 is prime.
Terms from Kamada data.
a(12) > 10^5.
EXAMPLE
For k=2, 5*R_2 + 3*10^k - 2 = 55 + 300 - 2 = 353 which is prime.
MATHEMATICA
Select[Range[0, 100000], PrimeQ[(32*10^#-23)/9] &]
PROG
(Magma) [n: n in [0..450] | IsPrime((32*10^n-23) div 9)]; // Vincenzo Librandi, Jun 19 2015
CROSSREFS
Cf. A002275.
Sequence in context: A111827 A045330 A193203 * A140050 A318038 A304798
KEYWORD
nonn,more,hard
AUTHOR
Robert Price, Jun 18 2015
STATUS
approved