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.

A124491 Numbers n such that 2n-1, 4n-1, 6n-1, 8n-1, 10n-1, 12n-1, 14n-1 and 16n-1 are primes.

Original entry on oeis.org

1447110, 30020760, 32261985, 121012185, 203937090, 546020475, 546037695, 837344865, 1140530160, 2517567255, 2664703335, 2841691440, 2896212165, 3000108405, 3190108740, 5204790360, 5744351970, 6872932605, 7090912185
Offset: 1

Views

Author

Artur Jasinski, Nov 04 2006

Keywords

Comments

All terms are multiples of 105. - Harvey P. Dale, May 08 2019

Crossrefs

Programs

  • Mathematica
    k = 0;inc = 3*5*7;While[k < 7200000000,k += inc;While[Nand @@ PrimeQ /@ ({2, 4, 6, 8, 10, 12, 14, 16}*k - 1), k += inc];Print[k];];(* Ray Chandler, Nov 21 2006 *)
    Select[Range[105,7091*10^6,105],AllTrue[2*Range[8]#-1,PrimeQ]&] (* The program uses the AllTrue function from Mathematica version 10 *) (* Harvey P. Dale, May 08 2019 *)

Extensions

Corrected and extended by Ray Chandler, Nov 21 2006