%I #33 Oct 24 2021 08:41:44
%S 88789,855709,74266249,964669609,1422475909,2117861719,2558211559,
%T 2873599429,5766036949,6568530949,8076004609,9853497739,16394542249,
%U 21171795079,21956291869,22741837819,26486447149,27254489389
%N Initial members of prime nonuplets (p, p+4, p+10, p+12, p+18, p+22, p+24, p+28, p+30).
%C All terms are congruent to 169 (modulo 210). - _Matt C. Anderson_, May 28 2015
%H Matt C. Anderson and Dana Jacobsen, <a href="/A022548/b022548.txt">Table of n, a(n) for n = 1..10000</a> [first 800 terms from Matt C. Anderson]
%H Tony Forbes and Norman Luhn, <a href="http://www.pzktupel.de/ktuplets">Prime k-tuplets</a>
%H Norman Luhn, <a href="http://www.pzktupel.de/SMArchiv/09tup4.zip">The first 10^6 initial members of prime 9-tuplets | pattern: d= 0, 4, 10, 12, 18, 22, 24, 28, 30</a>, zip archive.
%p a := 1; for b to 25 do a := a*ithprime(b) end do; a;
%p # so ‘a’ is the product of the primes 2 through 97
%p composite_small := proc (n::integer)
%p description "determine if n has a prime factor less than 100";
%p if igcd(2305567963945518424753102147331756070, n) = 1 then return false else return true end if
%p end proc;
%p # my technique involves isprime(m*n+o+p)
%p # with Multiplier, Number, Offset, and Pattern
%p p := [0, 4, 10, 12, 18, 22, 24, 28, 30];
%p o := [2059, 6679, 7519, 8989, 10249, 12139, 14449, 14869, 15919, 17179, 20539, 21379, 24109, 25999, 28729];
%p with(ArrayTools);
%p os := Size(o, 2);
%p ps := Size(p, 2);
%p m := 30030;
%p loopstop := 10^11;
%p loopstart := 0;
%p for n from loopstart to loopstop do
%p for a to os do
%p counter := 0; wc := 0; wd := 0;
%p while `and`(wd > -10, wd < ps) do
%p wd := wd+1;
%p if composite_small(m*n+o[a]+p[wd]) = false then wd := wd+1 else wd := -10 end if;
%p end do;
%p if wd >= 9 then
%p while `and`(counter >= 0, wc < ps) do
%p wc := wc+1;
%p if isprime(m*n+o[a]+p[wc]) then counter := counter+1 else counter := -1 end if;
%p end do;
%p end if;
%p if counter = ps then print(m*n+o[a]) end if;
%p end do;
%p end do;
%p # _Matt C. Anderson_, Feb 13 2014
%t Select[Prime[Range[2 10^6]], Union[PrimeQ[# + {4, 10, 12, 18, 22, 24, 28, 30}]] == {True} &] (* _Vincenzo Librandi_, Sep 30 2015 *)
%o (Perl) use ntheory ":all"; say for sieve_prime_cluster(1,1e11, 4,10,12,18,22,24,28,30); # _Dana Jacobsen_, Sep 30 2015
%o (PARI) forprime(p=2, 10^30, if (isprime(p+4) && isprime(p+10) && isprime(p+12) && isprime(p+18) && isprime(p+22) && isprime(p+24) && isprime(p+28) && isprime(p+30), print1(p", "))) \\ _Altug Alkan_, Sep 30 2015
%Y Cf. A022545, A022546, A022547.
%K nonn
%O 1,1
%A _Warut Roonguthai_