login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A306237 a(n) = primorial prime(n)#/prime(n - 1). 6
3, 10, 42, 330, 2730, 39270, 570570, 11741730, 281291010, 6915878970, 239378649510, 8222980095330, 319091739796830, 14299762385778870, 693386350578511590, 36278497172720993190, 1987938667108592728530, 128824943460332246817690, 8327475076517894939812170, 573657473228859495079173570 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,1
COMMENTS
Let primorial p_n# = A002110(n) and prime(n - 1) = A000040(n - 1). This sequence can be defined alternatively as p_(n - 2) * prime(n).
LINKS
FORMULA
a(n) = A002110(n)/A000040(n - 1).
EXAMPLE
a(2) = (2 * 3)/prime(2 - 1) = 6/2 = 3.
a(3) = (2*3*5)/prime(3 - 1) = 30/3 = 10.
MAPLE
a:= proc(n) option remember; `if`(n=2, 3,
a(n-1)*(p-> p(n-2)/p(n-1)*p(n))(ithprime))
end:
seq(a(n), n=2..23); # Alois P. Heinz, Jan 10 2021
MATHEMATICA
Array[Product[Prime@ i, {i, #}]/Prime[# - 1] &, 20, 2]
PROG
(PARI) a(n) = prod(k=1, n, prime(k))/prime(n-1); \\ Michel Marcus, Apr 13 2019
CROSSREFS
Sequence in context: A190657 A143523 A288813 * A042545 A203266 A151084
KEYWORD
nonn,easy
AUTHOR
Michael De Vlieger, Apr 10 2019
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 18 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)