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

A366997
Numbers m such that 3^k*k^3 + 2 is a prime.
1
0, 1, 9, 13, 27, 45, 169, 285, 307, 891, 4545, 9173, 20803
OFFSET
1,3
COMMENTS
If it exists, a(14) > 70000. - Hugo Pfoertner, Nov 02 2023
MATHEMATICA
Select[Range[0, 5000], PrimeQ[3^#*#^3 + 2] &] (* Amiram Eldar, Nov 02 2023 *)
PROG
(Magma) [k: k in [1..310] | IsPrime(3^k*k^3+2)];
CROSSREFS
Cf. A366956.
Sequence in context: A107913 A175532 A098074 * A032361 A031196 A151725
KEYWORD
nonn,more
AUTHOR
EXTENSIONS
a(12)-a(13) from Michael S. Branicky, Oct 31 2023
STATUS
approved