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

A280584
Numbers k such that (14*10^k - 83)/3 is prime.
0
1, 2, 3, 4, 6, 10, 11, 24, 53, 83, 97, 156, 157, 162, 182, 233, 355, 499, 629, 1252, 6378, 8366, 26406, 35345, 107694, 126784, 195234, 255805
OFFSET
1,2
COMMENTS
For k > 1, numbers k such that the digit 4 followed by k-2 occurrences of the digit 6 followed by the digits 39 is prime (see Example section).
a(29) > 3*10^5.
EXAMPLE
4 is in this sequence because (14*10^4 - 83) / 3 = 46639 is prime.
Initial terms and associated primes:
a(1) = 1, 19;
a(2) = 2, 439;
a(3) = 3, 4639;
a(4) = 4, 46639;
a(5) = 6, 4666639; etc.
MATHEMATICA
Select[Range[1, 100000], PrimeQ[(14*10^# - 83) / 3] &]
PROG
(PARI) is(n)=ispseudoprime((14*10^n - 83)/3) \\ Charles R Greathouse IV, Jun 13 2017
KEYWORD
nonn,more,hard
AUTHOR
Robert Price, Jan 05 2017
EXTENSIONS
a(25)-a(27) from Robert Price, Dec 23 2018
a(28) from Robert Price, Jun 17 2023
STATUS
approved