login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A173631
a(n) = ceiling(sqrt(4*P_n)), where P_n is product of first n primes
3
2, 3, 5, 11, 29, 97, 347, 1429, 6229, 29873, 160869, 895680, 5448207, 34885543, 228759799, 1568298164, 11417382972, 87698582661, 684947826800, 5606539592683, 47241542317190, 403631914492643, 3587558929043911, 32684217334320604, 308342289648017960, 3036819365023555974
OFFSET
0,1
LINKS
FORMULA
a(n) = ceiling(sqrt(4*A002110(n))). - Michel Marcus, Feb 22 2016
MAPLE
P:= 1: p:= 1: A[0]:= 2:
for n from 1 to 30 do
p:= nextprime(p);
P:= P*p;
A[n]:= ceil(sqrt(4*P));
od:
seq(A[i], i=0..30); # Robert Israel, Mar 18 2020
MATHEMATICA
p=4; Join[{Sqrt[p]}, Table[p=p*Prime[n]; Ceiling[Sqrt[p]], {n, 25}]]
PROG
(PARI) a(n) = sqrtint(4*prod(k=1, n, prime(k)) - 1) + 1; \\ Michel Marcus, Feb 22 2016; corrected Jun 16 2022
CROSSREFS
Sequence in context: A265418 A346052 A190197 * A182987 A334814 A364802
KEYWORD
nonn
AUTHOR
Vladimir Shevelev, Nov 23 2010
EXTENSIONS
Extended by T. D. Noe, Nov 23 2010
STATUS
approved