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

A295824
Numbers k such that (44*10^k - 161)/9 is prime.
0
1, 3, 4, 10, 81, 135, 217, 232, 247, 250, 325, 579, 955, 1288, 1522, 1839, 2794, 15658, 15777, 54547, 63790
OFFSET
1,2
COMMENTS
For k > 1, numbers k such that the digit 4 followed by k - 2 occurrences of the digit 8 followed by the digits 71 is prime (see Example section).
a(22) > 2 * 10^5.
EXAMPLE
3 is in this sequence because (44*10^3 - 161)/9 = 4871 is prime.
Initial terms and associated primes:
a(1) = 1, 31;
a(2) = 3, 4871;
a(3) = 4, 48871;
a(4) = 10, 48888888871; etc.
MATHEMATICA
Select[Range[1, 100000], PrimeQ[(44*10^# - 161)/9] &]
KEYWORD
nonn,more,hard
AUTHOR
Robert Price, Nov 28 2017
STATUS
approved