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

A095150
a(n) = prime(2^(2^n) + 1).
1
5, 11, 59, 1621, 821647, 104484802069, 870566678511500413589
OFFSET
0,1
COMMENTS
The k-th prime where k is the n-th Fermat number.
FORMULA
From Amiram Eldar, Jul 11 2024: (Start)
a(n) = A000040(A000215(n)).
a(n) = A151800(A095124(n)). (End)
EXAMPLE
a(2) = prime(2^(2^2)+1) = prime(17) = 59.
PROG
(PARI) f(n) = for(x=1, n, print1(prime(2^2^x+1)", "))
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Cino Hilliard, Jun 20 2004
EXTENSIONS
a(5)-a(6) from Amiram Eldar, Jul 11 2024
STATUS
approved