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!)
A309871 Numbers n for which 18n+1, 18n+5, 18n+7, 18n+11, 18n+13 and 18n+17 are primes. 2

%I #15 Feb 29 2020 18:00:45

%S 892,2432,156817,806697,822937,1377022,1389412,1418007,1619642,

%T 1753552,2017732,2058647,2329302,2554142,2703347,3058772,3135107,

%U 3326522,3391797,3723457,4126867,4132782,4171422,4411837,4610252,6378487,6440087,6878987,6897782,6991547

%N Numbers n for which 18n+1, 18n+5, 18n+7, 18n+11, 18n+13 and 18n+17 are primes.

%H Ely Golden, <a href="/A309871/b309871.txt">Table of n, a(n) for n = 1..1001</a>

%t tot[n_] := Select[Range[n], CoprimeQ[#, n] &]; m = 18; t = tot[m]; aQ[n_] := AllTrue[m * n + t, PrimeQ]; Select[Range[10^6], aQ] (* _Amiram Eldar_, Aug 22 2019 *)

%o (SageMath)

%o x = 1

%o for i in range(5000000):

%o if (18*i+1 in Primes()

%o and 18*i+5 in Primes()

%o and 18*i+7 in Primes()

%o and 18*i+11 in Primes()

%o and 18*i+13 in Primes()

%o and 18*i+17 in Primes()):

%o print(str(x)+" "+str(i))

%o x += 1

%Y Cf. A123986, A056956, A007811, A123985.

%K nonn

%O 1,1

%A _Ely Golden_, Aug 21 2019

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 17 23:17 EDT 2024. Contains 371767 sequences. (Running on oeis4.)