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!)
A060797 Integer part of square root of n-th primorial, A002110(n). 9
1, 1, 2, 5, 14, 48, 173, 714, 3114, 14936, 80434, 447839, 2724103, 17442771, 114379899, 784149081, 5708691485, 43849291330, 342473913399, 2803269796341, 23620771158594, 201815957246321, 1793779464521955, 16342108667160301, 154171144824008979 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Integer part of square root of product of n first primes.
LINKS
FORMULA
a(n) = A000196(A002110(n)) = floor(sqrt(A002110(n))).
EXAMPLE
n=8, q(8) = 2*3*5*7*11*13*17*19 = 9699690, a(8)=3114. This is between the 128th and 129th divisors of the 8th primorial: 3094 < A000196(9699690)=3114 < 3135.
(In general, x=A002110(n) always has 2^n divisors, and A000196(x) always lies between the k-th and (k+1)-th divisors of x, where k=ceiling(tau(x)/2) and tau(x) is the number of divisors of x.) - M. F. Hasler, Sep 02 2012
MATHEMATICA
a = {}; Do[b = 1; Do[b = b Prime[x], {x, 1, n}]; AppendTo[a, Floor[b^(1/2)]], {n, 1, 100}]; a (* Artur Jasinski *)
Join[{1}, Floor[Sqrt[#]]&/@FoldList[Times, Prime[Range[30]]]] (* Harvey P. Dale, Nov 22 2023 *)
PROG
(PARI) A060797(n)=sqrtint(prod(k=1, n, prime(k))) \\ M. F. Hasler, Sep 02 2012
CROSSREFS
Sequence in context: A149905 A149906 A129778 * A124381 A131236 A119499
KEYWORD
nonn
AUTHOR
Labos Elemer, Apr 27 2001
EXTENSIONS
a(23) correction by Hans Havermann, Dec 02 2010
Extended to a(0)=1=sqrt(A002110(0)) by M. F. Hasler, Sep 02 2012
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 19 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)