login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A086447 a(n) = the least k such that prime(n+1)+prime(n+2)+...+prime(n+k) is a multiple of prime(n). 3

%I #21 Jul 18 2019 05:09:09

%S 2,2,6,6,6,6,4,8,4,30,7,31,37,67,22,60,46,38,69,13,65,76,19,163,9,52,

%T 100,84,66,136,66,119,33,79,47,76,187,214,37,96,461,111,62,189,510,37,

%U 256,121,130,132,144,481,64,195,53,47,136,90,194,318,526,151,788,1542

%N a(n) = the least k such that prime(n+1)+prime(n+2)+...+prime(n+k) is a multiple of prime(n).

%C Conjecture: a(n) exists for every n.

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

%e a(3)=6 because prime(3)=5 divides 7+11+13+17+19+23 = 90.

%t bb={}; Do[s0=Prime[n0]; s=0; Do[s+=Prime[n]; If[IntegerQ[s/s0], bb=Append[bb, n-n0]; Break[]], {n, n0+1, 8000}], {n0, 1, 100}]; bb

%t sncp[n_]:=Module[{p=Prime[n],k=n+1,t},t=Prime[k];While[!Divisible[ t, p], k++;t=t+Prime[k]];k-n]; Array[sncp,100] (* _Harvey P. Dale_, May 21 2017 *)

%o (PARI) a(n)=my(p = prime(n), sp = nextprime(p+1), lp = sp, nb = 1); while (sp % p, lp = nextprime(lp+1); nb++; sp += lp); nb; \\ _Michel Marcus_, May 21 2017

%o (PARI) a(n, p=prime(n))=my(s, k); forprime(q=p+1, , s+=q; k++; if(s%p==0, return(k))) \\ _Charles R Greathouse IV_, May 21 2017

%Y Cf. A055233, A055514, A086448.

%K easy,nonn

%O 1,1

%A _Zak Seidov_, Jul 20 2003

%E Edited by _Don Reble_, Nov 10 2005

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 16:45 EDT 2024. Contains 371989 sequences. (Running on oeis4.)