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

A062447
a(n) = prime(q(n)), where q(n) = A002110(n).
9
2, 3, 13, 113, 1291, 20443, 350741, 7535917, 173723909, 4735396021, 160158887507, 5681909839321, 237981875869277, 10922592672383377, 520256404164231967, 26879210482658444513, 1556951523272630146229
OFFSET
0,1
FORMULA
a(n) = A000040(A002110(n)).
EXAMPLE
q(11) = 2*3*5*7*11*13*17*19*23*29*31 = 200560490130 and the 200560490130th prime is 5681909839321.
MATHEMATICA
Prime[FoldList[Times, 1, Prime@ Range[10]]] (* Michael De Vlieger, Aug 10 2023 *)
PROG
(PARI) a(n) = prime(vecprod(primes(n))); \\ Michel Marcus, Aug 11 2023
CROSSREFS
Sequence in context: A098406 A280012 A224792 * A153888 A068083 A137459
KEYWORD
nonn,hard,more
AUTHOR
Labos Elemer, Jul 09 2001
EXTENSIONS
a(11)=q(12)=p(37#) through a(15)=q(16)=p(53#) from Henri Lifchitz, Nov 11 2014
Missing a(0)=2 inserted by Alois P. Heinz, Apr 01 2021
STATUS
approved