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!)
A007702 a(n) = prime(n)*...*prime(m), the least product of consecutive primes which is non-deficient. 6
6, 15015, 33426748355, 1357656019974967471687377449, 7105630242567996762185122555313528897845637444413640621 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
a(n) = Product_{k = n..A007684(n)} prime(k) = Product_{0 <= i < A107705(n)} prime(n+i). - M. F. Hasler, Jun 15 2017
MATHEMATICA
a[n_] := Module[{p = Prime[n]}, r = 1; prod = 1; While[r < 2, r *= 1 + 1/p; prod *= p; p = NextPrime[p]]; prod]; Array[a, 5] (* Amiram Eldar, Jun 29 2019 *)
PROG
(PARI) A007702(n, p=prime(n), s=1+1/p, P=p)={until(2<=s*=1+1/p, P*=p=nextprime(p+1)); P} \\ M. F. Hasler, Jun 15 2017
CROSSREFS
Sequence in context: A093897 A062782 A036773 * A112642 A130434 A121571
KEYWORD
nonn
AUTHOR
EXTENSIONS
More terms from Don Reble, Nov 10 2005
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 23 16:40 EDT 2024. Contains 371916 sequences. (Running on oeis4.)