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”).
%I #19 May 26 2024 16:03:59
%S 1,2,3,5,6,17,22,56,71,90,93,109,124,135,179,255,1804,2541,2707,3195,
%T 4952,5884,9301,19847,27903,45739,65545,69424,103907,160619,168173,
%U 297497,299640
%N Numbers k such that (19*10^k + 77) / 3 is prime.
%C For k > 1, numbers k such that the digit 6 followed by k-2 occurrences of the digit 3 followed by the digits 59 is prime (see Example section).
%C a(34) > 3*10^5.
%H Makoto Kamada, <a href="https://stdkmd.net/nrr">Factorization of near-repdigit-related numbers</a>.
%H Makoto Kamada, <a href="https://stdkmd.net/nrr/prime/prime_difficulty.txt">Search for 63w59</a>.
%e 3 is in this sequence because (19*10^3 + 77) / 3 = 6359 is prime.
%e Initial terms and associated primes:
%e a(1) = 1, 89;
%e a(2) = 2, 659
%e a(3) = 3, 6359;
%e a(4) = 5, 633359;
%e a(5) = 6, 6333359, etc.
%t Select[Range[0, 100000], PrimeQ[(19*10^# + 77) / 3] &]
%o (PARI) is(n)=ispseudoprime((19*10^n + 77)/3) \\ _Charles R Greathouse IV_, Jun 13 2017
%Y Cf. A056654, A268448, A269303, A270339, A270613, A270831, A270890, A270929, A271269.
%K nonn,more
%O 1,2
%A _Robert Price_, Aug 31 2016
%E a(29)-a(31) from _Robert Price_, May 28 2019
%E a(32)-a(33) from _Robert Price_, Jun 01 2023