OFFSET
1,1
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000 (terms 1..1000 from Harvey P. Dale)
Umberto Cerruti, Pseudoprimi di Fermat e numeri di Carmichael (in Italian), p. 14.
MATHEMATICA
Select[Range[10000], PrimeQ[12 # + 1] && PrimeQ[24 # + 1] && PrimeQ[36 # + 1] && PrimeQ[72 # + 1] &]
Select[Range[17000], AllTrue[{12, 24, 36, 72}#+1, PrimeQ]&] (* The program uses the AllTrue function from Mathematica version 10 *) (* Harvey P. Dale, May 16 2016 *)
PROG
(Magma) [n: n in [0..20000] | IsPrime(12*n+1) and IsPrime(24*n+1) and IsPrime(36*n+1) and IsPrime(72*n+1)]; /* or */ [n: n in [0..20000] | forall{i: i in Divisors(6) | IsPrime(12*i*n+1)}];
CROSSREFS
KEYWORD
nonn
AUTHOR
Vincenzo Librandi, Feb 26 2015
STATUS
approved