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!)
A079848 Smallest primes such that a(j) - a(k) are all different. 5

%I #23 Sep 11 2023 16:42:18

%S 2,3,5,11,23,37,47,97,101,149,211,233,353,383,487,641,757,797,919,

%T 1097,1163,1381,1409,1481,1777,1997,2287,2417,2969,3049,3371,3529,

%U 3929,4231,4759,5279,5449,5717,5953,6529,6983,7583,8053,8819,9043,10133,10799

%N Smallest primes such that a(j) - a(k) are all different.

%C This is the slowest-growing prime B2 sequence. See A005282. - _T. D. Noe_, Mar 24 2007

%H T. D. Noe, <a href="/A079848/b079848.txt">Table of n, a(n) for n=1..4084</a> (terms less than 2*10^9)

%t terms = 100; a = Table[0, {terms}]; s={}; k=0; A079848list = Reap[For[p=2, p < 10^5, p = NextPrime[p], j=1; While[j <= k && FreeQ[s, p-a[[j]]], j++]; If[j>k, For[j=1, j <= k, j++, s = Union[s, {p-a[[j]]}]]; k++; a[[k]] = p; Print[p]; Sow[p]; If[k == terms, Break[]]]]][[2, 1]]; (* _Jean-François Alcover_, Nov 02 2016, adapted from _Max Alekseyev_'s PARI code *)

%o (PARI) a=vector(100);s=Set();k=0;forprime(p=2,10^5,j=1;while(j<=k&&!setsearch(s,p-a[j]),j++);if(j>k, for(j=1,k,s=setunion(s,[p-a[j]]));k++;a[k]=p;print1(" ",p);if(k==100,break))) \\ _Max Alekseyev_, Feb 14 2005

%o (Python)

%o from itertools import count, islice

%o from sympy import nextprime

%o def A079848_gen(): # generator of terms

%o aset2, alist, k = set(), [], 0

%o while (k:=nextprime(k)):

%o bset2 = set()

%o for a in alist:

%o if (b:=k-a) in aset2:

%o break

%o bset2.add(b)

%o else:

%o yield k

%o alist.append(k)

%o aset2.update(bset2)

%o A079848_list = list(islice(A079848_gen(),30)) # _Chai Wah Wu_, Sep 11 2023

%Y Cf. A079849.

%K nice,nonn

%O 1,1

%A _Amarnath Murthy_, Feb 18 2003

%E More terms from _Max Alekseyev_, Feb 14 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 August 25 06:02 EDT 2024. Contains 375422 sequences. (Running on oeis4.)