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!)
A131741 a(n) is least prime (not already in list) such that no 3-term subset forms an arithmetic progression. 4

%I #14 Oct 30 2019 16:26:06

%S 2,3,5,11,13,29,31,37,41,67,73,83,89,101,107,127,139,157,179,193,227,

%T 233,263,271,281,307,331,337,379,389,397,401,409,431,433,467,491,499,

%U 509,563,571,613,641,647,743,769,809,823,883,887,907,937,983,1009,1021

%N a(n) is least prime (not already in list) such that no 3-term subset forms an arithmetic progression.

%C a(n) is the smallest prime such that there is no i < j < n with a(n) - a(j) = a(j) - a(i).

%H Vincenzo Librandi, <a href="/A131741/b131741.txt">Table of n, a(n) for n = 1..1000</a>

%H <a href="http://oeis.org/wiki/Index_to_OEIS:_Section_No#non_averaging">Index entries for non-averaging sequences</a>

%e Table showing derivation of first 10 values.

%e n a(n) comment

%e 1 2

%e 2 3

%e 3 5

%e 4 11 a(4) can't be 7 because (3,5,7) is in arithmetic progression.

%e 5 13

%e 6 29 a(6) can't be 17 because (5,11,17); can't be 19 because (3,11,19); can't be 23 because (3,13,23)

%e 7 31

%e 8 37

%e 9 41

%e 10 67 a(10) not 43 as (31,37,43); not 47 as (11,29,47); not 53 as (29,41,53); not 59 as (13,31,59); not 61 as (13,37,61)

%t f[l_List] := Block[{c, f = 0}, c = If[l == {}, 0, l[[ -1]]]; While[f == 0, c = NextPrime[c]; If[Intersection[l, l - (c - l)] == {}, f = 1]; ]; Append[l, c] ]; Nest[f, {}, 100] (* _Ray Chandler_, Oct 06 2007 *)

%o (PARI) nxt(v)=my(t); forprime(p=v[#v]+1,,forstep(i=#v,3,-1,t=2*v[i]-p; if(t<3, if(i==#v,break,next)); if(setsearch(v,t),next(2))); return(p))

%o list(n)=my(v=[2]);for(k=2,n,v=concat(v,nxt(v))); v \\ _Charles R Greathouse IV_, Jan 30 2014

%Y Cf. A000040, A065825.

%K easy,nonn

%O 1,1

%A _Jonathan Vos Post_, Oct 04 2007

%E More terms from _Ray Chandler_, Oct 06 2007.

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:39 EDT 2024. Contains 371989 sequences. (Running on oeis4.)