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

A085107
Starting with n-1 go on adding the numbers less than n and coprime to it in descending order until one gets a prime. a(n) = this prime, or 0 if no such number exists.
1
0, 0, 2, 3, 7, 5, 11, 7, 0, 19, 19, 11, 23, 13, 53, 0, 31, 17, 0, 19, 0, 101, 43, 23, 47, 131, 0, 139, 0, 29, 59, 31, 233, 223, 67, 179, 71, 37, 373, 109, 79, 41, 83, 43, 269, 457, 0, 47, 431, 139, 641, 313, 103, 53, 107, 251, 613, 643, 0, 59, 0, 61, 587, 0, 127, 521, 131, 67
OFFSET
1,3
COMMENTS
a(p+1) = p, p is a prime.
If n is prime and 2n-3 is not prime, then a(n) = 0. - David Wasserman, Jan 27 2005
There are 105 zeros in the first 1000 terms. - Harvey P. Dale, Feb 24 2016
LINKS
EXAMPLE
a(10) = 9 + 7 + 3 = 19.
MATHEMATICA
cp[n_]:=SelectFirst[Accumulate[Select[Range[n, 1, -1], CoprimeQ[ #, n]&]], PrimeQ]/._Missing->0; Array[cp, 70] (* The program uses the SelectFirst function from Mathematica version 10 *) (* Harvey P. Dale, Feb 24 2016 *)
CROSSREFS
Sequence in context: A159842 A085102 A087572 * A358242 A241082 A219789
KEYWORD
nonn
AUTHOR
Amarnath Murthy and Meenakshi Srikanth (menakan_s(AT)yahoo.com), Jul 04 2003
EXTENSIONS
More terms from David Wasserman, Jan 27 2005
STATUS
approved