OFFSET
1,1
COMMENTS
Conjecturally all terms are prime. There are no composite terms < 24000.
57287 will be the next term if there are no composite terms below. There are no other prime terms < 100000.
Terms > 2963 correspond to probable primes.
EXAMPLE
5 is a term because (9^5 + 3^5 + 1)/13 = 4561 is prime.
PROG
(PARI) isok(k)={k%3 && ispseudoprime((9^k + 3^k + 1)/13)}
{ for(k=1, 2000, if(isok(k), print1(k, ", "))) }
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Aurelien Gibier, Jun 29 2024
EXTENSIONS
a(13) confirmed by Michael S. Branicky, Sep 13 2024
STATUS
approved