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

A076724
Sum {k = 1..n} tau(k) is a prime, where tau is the Ramanujan tau function (A000594).
0
2, 3, 39, 97, 172, 177, 200, 203, 318, 332, 345, 500, 519, 527, 651, 660, 722, 865, 870, 881, 890, 897, 1089, 1091, 1101, 1106, 1156, 1177, 1192, 1205, 1369, 1370, 1393, 1425, 1459, 1466, 1499, 1500, 1503, 1505, 1517, 1519, 1703, 1755, 1779, 1782, 1786
OFFSET
1,1
MATHEMATICA
Needs["NumberTheory`Ramanujan`"]; s = 0; Do[s = s + RamanujanTau[n]; If[PrimeQ[s], Print[n]], {n, 1, 10^4}]
Flatten[Position[Accumulate[RamanujanTau[Range[0, 1800]]], _?(PrimeQ[ #]&)]]-1 (* Harvey P. Dale, Dec 22 2015 *)
CROSSREFS
Cf. A000594.
Sequence in context: A039820 A331204 A153745 * A080393 A111683 A323734
KEYWORD
nonn
AUTHOR
Robert G. Wilson v, Dec 30 2002
STATUS
approved