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

Second smallest k > 0 such that n+(1+2+...+k) is prime.
3

%I #22 Jan 03 2016 10:43:57

%S 3,2,7,2,8,10,4,5,7,2,8,10,4,5,16,2,8,10,7,6,16,5,8,22,7,5,16,2,15,22,

%T 4,6,7,9,8,13,4,5,19,2,11,10,7,5,16,5,8,13,12,6,7,5,8,22,7,5,16,2,15,

%U 13,4,9,16,5,8,13,8,5,7,2,11,10,4,14,16,6,8

%N Second smallest k > 0 such that n+(1+2+...+k) is prime.

%C Take the counting numbers and continue adding 1, 2, ..., a(n) until reaching a second prime.

%C Conjecturally (Hardy & Littlewood conjecture F), a(n) exists for all n. - _Charles R Greathouse IV_, Oct 21 2014

%C It appears that the minimum value reached by a(n) is 2, and this occurs for n= 2, 4, 10, 16, 28, 40, 58, 70, ... Is this A144834? - _Michel Marcus_, Oct 26 2014

%H Charles R Greathouse IV, <a href="/A249112/b249112.txt">Table of n, a(n) for n = 1..10000</a>

%F n+A000217(k) is prime for k=a(n) and exactly one smaller positive value. - _M. F. Hasler_, Oct 21 2014

%e a(3)=7 because 3+1+2+3+4+5+6+7=31 and one partial sum is prime.

%e a(4)=2 because 4+1=5 and 4+1+2=7.

%t Table[k = 0; Do[k++; While[! PrimeQ[n + Total@ Range@ k], k++], {x, 2}]; k, {n, 77}] (* _Michael De Vlieger_, Jan 03 2016 *)

%o (PARI) a(n)=my(k, s=2); while(s, if(isprime(n+=k++), s--)); k \\ _Charles R Greathouse IV_, Oct 21 2014

%o (PARI) a(n,s=2)=my(k);until(isprime(n+=k++)&&!s--,);k \\ allows one to get A249113(n) as a(n,3). - _M. F. Hasler_, Oct 21 2014

%Y Cf. A085415, A249113.

%K easy,nonn

%O 1,1

%A _Gil Broussard_, Oct 21 2014