|
|
A070826
|
|
One half of product of first n primes A000040.
|
|
75
|
|
|
1, 3, 15, 105, 1155, 15015, 255255, 4849845, 111546435, 3234846615, 100280245065, 3710369067405, 152125131763605, 6541380665835015, 307444891294245705, 16294579238595022365, 961380175077106319535, 58644190679703485491635, 3929160775540133527939545, 278970415063349480483707695
(list;
graph;
refs;
listen;
history;
text;
internal format)
|
|
|
OFFSET
|
1,2
|
|
COMMENTS
|
Also, with offset 0, product of first n odd primes. - N. J. A. Sloane, Feb 26 2017
a(n+1) is the least odd number with exactly n distinct prime divisors. - Labos Elemer, Mar 24 2003
|
|
LINKS
|
|
|
FORMULA
|
|
|
MAPLE
|
a:=n->mul(ithprime(j), j=2..n):seq(a(n), n=1..17); # Zerinvary Lajos, Aug 24 2008
|
|
MATHEMATICA
|
FoldList[Times, 1, Prime[Range[2, 18]]] (* Zak Seidov, Jan 26 2009 *)
|
|
PROG
|
(PARI) a(n) = prod(k=1, n, prime(k))/2; \\ Michel Marcus, Mar 25 2017
(Python)
from sympy import primorial
|
|
CROSSREFS
|
|
|
KEYWORD
|
nonn,easy
|
|
AUTHOR
|
|
|
EXTENSIONS
|
|
|
STATUS
|
approved
|
|
|
|