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!)
A077128 Smallest number greater than the previous term which is relatively prime to each of the group of the next n numbers. 2

%I #10 Aug 07 2015 02:44:00

%S 2,5,7,11,17,23,29,37,47,59,67,79,97,107,127,137,157,173,191,211,233,

%T 257,277,307,331,353,379,409,439,467,499,541,563,599,631,673,709,743,

%U 787,821,863,907,947,991,1039,1087,1129,1181,1229,1277,1327,1381,1433

%N Smallest number greater than the previous term which is relatively prime to each of the group of the next n numbers.

%C Conjecture : every member is a prime.

%e a(6) = 23 is the smallest number coprime to 16,17,18,19,20 and 21. - _R. J. Mathar_, Sep 02 2008

%p A000217 := proc(n) n*(n+1)/2 ; end: A077128 := proc(n) option remember ; local ts,a,goodk,k ; if n = 1 then RETURN(2) ; fi; ts := [seq(A000217(n-1)+i,i=1..n)] ; for a from procname(n-1)+1 do goodk := true ; for k in ts do if gcd(a,k) <> 1 then goodk := false; break ; fi; od: if goodk then RETURN(a) ; fi; od: end: for n from 1 to 100 do printf("%d,",A077128(n)) ; od: # _R. J. Mathar_, Sep 02 2008

%Y Cf. A097050. - _R. J. Mathar_, Sep 02 2008

%K nonn

%O 1,1

%A _Amarnath Murthy_, Oct 29 2002

%E Extended beyond a(10) by _R. J. Mathar_, Sep 02 2008

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 18 08:14 EDT 2024. Contains 371769 sequences. (Running on oeis4.)