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

A309741
Numbers k such that 6*10^(2*k) + 6*10^k + 1 is prime.
1
0, 1, 2, 4, 22, 133, 567, 14739, 25390
OFFSET
1,3
EXAMPLE
13 is prime. ==> a(1) = 0.
661 is prime. ==> a(2) = 1.
60601 is prime. ==> a(3) = 2.
6006001 = 2027 * 2963.
600060001 is prime. ==> a(4) = 4.
PROG
(PARI) for(k=0, 1e3, if(ispseudoprime(6*100^k+6*10^k+1), print1(k", ")))
CROSSREFS
Cf. A309739.
Sequence in context: A235938 A279705 A321248 * A110130 A259116 A283322
KEYWORD
nonn,more,base
AUTHOR
Seiichi Manyama, Aug 15 2019
EXTENSIONS
a(8)-a(9) from Michael S. Branicky, Sep 03 2024
STATUS
approved