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

Numbers k such that (28*10^k + 773)/9 is prime.
0

%I #18 May 26 2024 14:41:03

%S 0,2,5,6,11,20,32,59,81,98,128,437,758,989,998,1403,1548,1907,1914,

%T 2219,5414,9047,13196,18518,28382

%N Numbers k such that (28*10^k + 773)/9 is prime.

%C For k > 1, numbers k such that the digit 3 followed by k-2 occurrences of the digit 1 followed by the digits 97 is prime (see Example section).

%C a(26) > 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 31w97</a>.

%e 5 is in this sequence because (28*10^5 + 773)/9 = 311197 is prime.

%e Initial terms and associated primes:

%e a(1) = 0, 89;

%e a(2) = 2, 397;

%e a(3) = 5, 311197;

%e a(4) = 6, 3111197;

%e a(5) = 11, 311111111197, etc.

%t Select[Range[0, 100000], PrimeQ[(28*10^# + 773)/9] &]

%o (Magma) [n: n in [0..500] | IsPrime((28*10^n+773) div 9)]; // _Vincenzo Librandi_, Aug 01 2016

%o (PARI) is(n)=ispseudoprime((28*10^n+773)/9) \\ _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_, Jul 31 2016