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

A140763
A051838 gives numbers m such that the sum of first m primes divides the product of the first m primes. This sequence gives corresponding values of the sum of first m primes.
11
2, 10, 77, 238, 874, 2747, 2914, 3266, 3638, 4661, 5117, 5830, 6601, 6870, 7141, 9523, 10191, 10887, 11966, 13490, 16401, 19113, 21037, 23069, 40313, 41741, 46191, 50887, 53342, 54998, 58406, 60146, 61910, 65534, 68341, 72179, 75130, 76127, 80189, 82253
OFFSET
1,1
COMMENTS
Sums (divisors) associated with A140761.
LINKS
FORMULA
a(n)=A116536(n)/A159578(n) = A007504(A051838(n)). - R. J. Mathar, Jun 09 2008
Sum_{i=1..A051838(n)} prime(i).
EXAMPLE
a(2)=10 because when 30 is divided by 10, the quotient is 3 and integral.
MATHEMATICA
Module[{nn=200, s, p}, s=Accumulate[Prime[Range[nn]]]; p=FoldList[ Times, Prime[ Range[nn]]]; Select[Thread[{p, s}], Divisible[#[[1]], #[[2]]]&]][[All, 2]] (* Harvey P. Dale, Jun 07 2022 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Enoch Haga, May 28 2008
EXTENSIONS
Corrected and edited by N. J. A. Sloane, Oct 01 2011
STATUS
approved