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”).

A140761
Primes p(j) = A000040(j), j>=1, such that p(1)*p(2)*...*p(j) is an integral multiple of p(1)+p(2)+...+p(j).
6
2, 5, 19, 41, 83, 163, 167, 179, 191, 223, 229, 241, 263, 269, 271, 317, 337, 349, 367, 389, 433, 463, 491, 521, 701, 719, 757, 809, 823, 829, 859, 877, 883, 919, 941, 971, 991, 997, 1021, 1033, 1049, 1091, 1153, 1181, 1193, 1223, 1291, 1301, 1319, 1327, 1361
OFFSET
1,1
LINKS
FORMULA
Find integral quotients of products of consecutive primes divided by their sum.
a(n) = A000040(A051838(n)). - R. J. Mathar, Jun 09 2008
EXAMPLE
a(2) = 5 because it is the last consecutive prime in the run 2*3*5 = 30 and 2+3+5 = 10; since 30/10 = 3, it is the first integral quotient.
MATHEMATICA
seq = {}; sum = 0; prod = 1; p = 1; Do[p = NextPrime[p]; prod *= p; sum += p; If[Divisible[prod, sum], AppendTo[seq, p]], {200}]; seq (* Amiram Eldar, Nov 02 2020 *)
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Enoch Haga, May 28 2008
EXTENSIONS
Edited by R. J. Mathar, Jun 09 2008
a(1) added by Amiram Eldar, Nov 02 2020
STATUS
approved