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

A100605
Numbers k such that (prime(k)-1)! + prime(k)^2 is prime.
2
1, 2, 4, 10, 26
OFFSET
1,2
COMMENTS
k = {1, 2, 4, 10, 26} yields primes p(k) = {2, 3, 7, 29, 101}. There are no more such k up to k=100. Verified by Ray Chandler.
a(6) > 750. - Jinyuan Wang, Apr 10 2020
a(5) > 2500. - Michael S. Branicky, Jul 02 2024
FORMULA
Numbers k such that (prime(k)-1)! + prime(k)^2 is prime, where prime(k) is the k-th prime.
EXAMPLE
a(3) = 4 because (prime(4)-1)! + prime(4)^2 = (7-1)! + 7^2 = 720 + 49 = 769 is prime and is the 3rd such prime of that form.
PROG
(PARI) is(k) = ispseudoprime((prime(k)-1)! + prime(k)^2); \\ Jinyuan Wang, Apr 10 2020
CROSSREFS
Sequence in context: A111564 A350507 A007021 * A247395 A183947 A154322
KEYWORD
nonn,hard,more
AUTHOR
Jonathan Vos Post, Nov 30 2004
STATUS
approved