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 the string 4444k is prime.
2

%I #11 Jan 20 2024 16:02:50

%S 9,21,43,49,61,63,69,73,87,109,127,147,159,169,171,201,207,213,217,

%T 229,241,261,289,291,331,339,357,369,381,397,409,469,471,483,487,507,

%U 519,549,591,607,621,639,663,669,697,703,711,717,729,747

%N Numbers k such that the string 4444k is prime.

%H Harvey P. Dale, <a href="/A110680/b110680.txt">Table of n, a(n) for n = 1..1000</a>

%e k=109 is in the sequence because 4444k = 4444109 is prime.

%t Select[Range[800],PrimeQ[4444*10^IntegerLength[#]+#]&] (* _Harvey P. Dale_, Jul 04 2014 *)

%K nonn,base

%O 1,1

%A _Parthasarathy Nambi_, Sep 14 2005