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.

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

Original entry on oeis.org

892, 2432, 156817, 806697, 822937, 1377022, 1389412, 1418007, 1619642, 1753552, 2017732, 2058647, 2329302, 2554142, 2703347, 3058772, 3135107, 3326522, 3391797, 3723457, 4126867, 4132782, 4171422, 4411837, 4610252, 6378487, 6440087, 6878987, 6897782, 6991547
Offset: 1

Views

Author

Ely Golden, Aug 21 2019

Keywords

Crossrefs

Programs

  • Mathematica
    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 *)
  • SageMath
    x = 1
    for i in range(5000000):
        if (18*i+1 in Primes()
        and 18*i+5 in Primes()
        and 18*i+7 in Primes()
        and 18*i+11 in Primes()
        and 18*i+13 in Primes()
        and 18*i+17 in Primes()):
            print(str(x)+" "+str(i))
            x += 1