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

A096321
a(n) = prime(2^prime(n)).
0
7, 19, 131, 719, 17863, 84017, 1742537, 7754077, 148948139, 11891268401, 50685770167, 3839726846311, 67756520645329, 283634652716357, 4940729268330643, 354733509412061993, 25161232392544176197, 103917116257220706127, 7278050150447936843717, 123129946710886829498713, 505870764273226657981427
OFFSET
1,1
FORMULA
a(n) = A033844(A000040(n)). - Amiram Eldar, Jul 01 2024
EXAMPLE
a(3) = prime(2^prime(3)) = prime(2^5) = prime(32) = 131.
MATHEMATICA
Table[ Prime[ 2^Prime[n]], {n, 13}] (* Robert G. Wilson v, Aug 07 2004 *)
PROG
(PARI) lista(n) = forprime(x=2, n, print1(prime(2^x)", "));
CROSSREFS
Sequence in context: A267276 A328713 A376907 * A201806 A346943 A128338
KEYWORD
nonn
AUTHOR
Cino Hilliard, Aug 02 2004
EXTENSIONS
Edited and extended by Robert G. Wilson v, Aug 07 2004
a(14)-a(21) from Amiram Eldar, Jul 01 2024
STATUS
approved