login
Cousin primes, the lower of which is 7 (mod 10).
2

%I #7 Oct 08 2013 02:40:25

%S 7,11,37,41,67,71,97,101,127,131,277,281,307,311,397,401,457,461,487,

%T 491,757,761,877,881,907,911,937,941,967,971,1087,1091,1297,1301,1447,

%U 1451,1567,1571,1597,1601,1867,1871,2137,2141,2347,2351,2377,2381,2437

%N Cousin primes, the lower of which is 7 (mod 10).

%C Start from the intersection of A023200 and A030432, then add the associated members of A046132. The last digits are obviously periodic as A010688. - _R. J. Mathar_, Nov 26 2008

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

%t a[0] = 7; a[n_] := a[n] = a[n - 1] + 10; Flatten[Table[If[PrimeQ[a[n]] && PrimeQ[a[n] + 4], {a[n],a[n] + 4}, {}], {n, 0, 1000}]]

%Y Cf. A132243, A132242, A076746.

%K nonn

%O 1,1

%A _Roger L. Bagula_, May 04 2008

%E Replaced Mathematica definition by humanly readable phrase. - _R. J. Mathar_, Nov 26 2008