The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A066268 Product of first n primorials - 1. 4
1, 11, 359, 75599, 174635999, 5244319079999, 2677277333530799999, 25968760179275365451999999, 5793445238736255798985527239999999, 37481813439427687898244906452608585199999999 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
Romeo Meštrović, Euclid's theorem on the infinitude of primes: a historical survey of its proofs (300 BC--2012) and another new proof, arXiv preprint arXiv:1202.3670 [math.HO], 2012-2023. - From N. J. A. Sloane, Jun 13 2012
Carlos Rivera, Puzzle 118. Primorial product numbers, The Prime Puzzles & Problems Connection.
Eric Weisstein's World of Mathematics, Primorial.
EXAMPLE
a(3) = (2)*(2*3)*(2*3*5) - 1 = 359.
MATHEMATICA
Table[Times@@Table[Times@@Prime[Range[n]], {n, k}]-1, {k, 40}]
(* or *)
pr2=1; Table[pr1=1; Do[pr1=pr1*Prime[n], {n, k}]; pr2=pr2*pr1; pr2-1, {k, 40}] (* Jayanta Basu, May 12 2013 *)
PROG
(PARI) { p=1; q=1; for (n=1, 37, p*=prime(n); q*=p; write("b066268.txt", n, " ", q - 1) ) } \\ Harry J. Smith, Feb 08 2010
CROSSREFS
Sequence in context: A171630 A303116 A162019 * A257227 A176474 A000464
KEYWORD
nonn
AUTHOR
Patrick De Geest, Dec 16 2001
EXTENSIONS
Offset changed from 0 to 1 by Harry J. Smith, Feb 08 2010
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 May 19 03:20 EDT 2024. Contains 372666 sequences. (Running on oeis4.)