OFFSET
1,1
COMMENTS
Known values such that a(n)=A145781(n) are a(n)=2,3,6,15 and 715, i.e. for primes p=2,3,5,7 and 17.
(The relation a(n)=A145781(n) means that a(n)(a(n)-1) is a primorial number.) - M. F. Hasler, Sep 02 2012, - corrected by Jonathan Sondow, Sep 02 2012
LINKS
C. Aebi and G. Cairns, Partitions of primes, Parabola 45, Issue 1 (2009); see the table on p. 5.
FORMULA
a(n)=A060797(n)+1. - M. F. Hasler, Sep 02 2012
EXAMPLE
a(2) = sqrt(2*3 + A145781(2))= sqrt(2*3 + 3) = sqrt(9) = 3.
PROG
(PARI) j=[]; for (n=1, 30, p = prod(i=1, n, prime(i)); j=concat(j, floor(sqrt((ceil(sqrt(p))^2)))); ); j
(PARI) A216144(n)=sqrtint(prod(k=1, n, prime(k)))+1 \\ - M. F. Hasler, Sep 02 2012
CROSSREFS
KEYWORD
nonn
AUTHOR
Michel Marcus, Sep 02 2012
STATUS
approved