OFFSET
0,2
COMMENTS
The product of the first n+1 terms is the smallest deficient multiple of the product of the first n terms.
The product of any finite number of distinct terms of this sequence is deficient.
a(n) for n > 0 is the lexicographically earliest sequence of primes P, such that the asymptotic density of the squarefree numbers (A005117) which are not divisible by any prime in P is 3/Pi^2 (A104141), i.e., half the asymptotic density of all the squarefree numbers. - Amiram Eldar, Nov 30 2020
LINKS
Amiram Eldar, Table of n, a(n) for n = 0..14
FORMULA
a(n) = A151800(floor(1/(2*(Product_{i=2..n-1} a(i)/(a(i)+1))-1)), where A151800 is the "next larger prime" function.
Lim_{n->infinity} A001065(Product_{i=0..n} a(i))/(Product_{i=0..n} a(i)) = 1. [Corrected by M. F. Hasler, Dec 04 2017]
Conjecture: log(a(n)) ~ e^(an+b) where a and b are approximately 0.6 and -1.6 respectively.
EXAMPLE
a(3) = 11 because A001065(2*5*7) = A001065(70) = 74 > 70, and A001065(2*5*11) = A001065(110) = 106 < 110.
From M. F. Hasler, Dec 14 2017: (Start)
Let Q(x) = 1/(2x/sigma(x) - 1), P(n) = Product( a(k), k<n): P(0) = 1 (empty product). Then:
Q(P(0)) = 1, a(0) = nextprime(1) = 2 = P(1).
Q(P(1)) = 3, a(1) = 5. (2*3 is perfect, P(2) = 2*5 is deficient.)
Q(P(2)) = 9, a(2) = 11. (2*5*7 is weird, P(3) = 2*5*11 is deficient.)
Q(P(3)) = 54, a(3) = 59. (P(3)*53 is weird, P(4) = 2*5*11*59 is deficient.)
Q(P(4)) = 648, a(4) = 653. (P(4)*647 is weird, P(5) = 2*5*11*59*653 is deficient.)
Q(P(5)) = 84758.4, a(5) = 84761. (P(5)*84751 is abundant and semiperfect: sum of all proper divisors except {1, 2, 11, 22, 55, 59, 590}; P(6) = 2*5*11*59*653*84761 is deficient.) (End)
MATHEMATICA
a[0]=1; a[n_] := a[n] = NextPrime[1/(2*Product[a[i], {i, 1, n-1}]/Product[a[i]+1, {i, 1, n-1}]-1)]; Array[a, 11, 0] (* Amiram Eldar, Jun 10 2019 *)
PROG
(PARI) lista(nn) = {print1(p=1, ", "); vp = [p]; for (n=2, nn, np = nextprime(1+floor(1/(2*prod(i=2, n-1, vp[i]/(vp[i]+1))-1))); vp = concat(vp, np); print1(np, ", "); ); } \\ Michel Marcus, Oct 16 2015
(PARI) a=List(); m=1; for(n=0, 13, listput(a, p=nextprime(1\(2/sigma(m, -1)-1)+1)); p>default(primelimit)&&addprimes(p); m*=p); a \\ M. F. Hasler, Dec 14 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
Chayim Lowen, Sep 15 2015
STATUS
approved