cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A206329 Squarefree sums of 2 successive primes.

This page as a plain text file.
%I A206329 #29 Oct 30 2018 10:31:02
%S A206329 5,30,42,78,138,186,210,222,258,330,390,410,434,462,618,762,786,798,
%T A206329 906,930,946,966,978,1002,1030,1230,1290,1334,1374,1410,1446,1482,
%U A206329 1518,1542,1606,1722,1758,1770,1794,1830,1866,1878,1938,1974,2006,2022,2190,2226
%N A206329 Squarefree sums of 2 successive primes.
%C A206329 Intersection of A001043 and A005117, both infinite, but is their intersection infinite?
%C A206329 Also note that the only prime is a(1)=5 and there are no semiprimes (products of 2 primes A001358).
%H A206329 Charles R Greathouse IV, <a href="/A206329/b206329.txt">Table of n, a(n) for n = 1..10000</a>
%e A206329 a(1)=5=A001043(1)=A005117(4), a(2)=30=A001043(6)=A005117(19), a(3)=42=A001043(8)=A005117(28).
%p A206329 N:= 1000: # to get the first N terms
%p A206329 count:= 0:
%p A206329 p:= 2:
%p A206329 while count < N do
%p A206329   pp:= nextprime(p);
%p A206329   if numtheory:-issqrfree(p+pp) then
%p A206329     count:= count+1;
%p A206329     A[count]:= p+pp;
%p A206329   fi;
%p A206329   p:= pp;
%p A206329 od:
%p A206329 seq(A[i],i=1..N);
%p A206329 # _Robert Israel_, Jul 20 2014
%t A206329 Select[Table[Prime[n] + Prime[n + 1], {n, 300}], SquareFreeQ] (* _Vladimir Joseph Stephan Orlovsky_, Feb 19 2012 *)
%o A206329 (PARI) p=2;forprime(q=3,1e4,if(issquarefree(p+q),print1(p+q", "));p=q) \\ _Charles R Greathouse IV_, Feb 08 2012
%Y A206329 Cf. A001043, A001358, A005117, A206462.
%K A206329 nonn
%O A206329 1,1
%A A206329 _Zak Seidov_, Feb 06 2012