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

A075068
Product of prime(n) primes starting from prime(n).
3
6, 105, 85085, 215656441, 2928046583754721, 50774191064678342417, 8893257265710151560293840093, 456136734556614681201275816106457, 413876828984538288243690385880996726353717
OFFSET
1,1
LINKS
FORMULA
a(n) = A002110(n - 1 + A000040(n)) / A002110(n - 1). - Reinhard Zumkeller, Jan 06 2005
EXAMPLE
a(1) = 2*3=6, a(2) = 3*5*7= 105, a(4) = product of 7 primes, from 7 up to 29.
PROG
(PARI) a(n) = my(N=n+prime(n)-1, vp = primes(N)); prod(k=n, N, vp[k]); \\ Michel Marcus, Mar 08 2022
CROSSREFS
Sequence in context: A162130 A048707 A259156 * A376331 A055763 A213464
KEYWORD
nonn
AUTHOR
Amarnath Murthy, Sep 08 2002
EXTENSIONS
More terms from David Wasserman, Jan 04 2005
STATUS
approved