A257168 Numbers n such that n, n+2, n+8, n+14, n+18, n+20, n+24, n+30, n+32, n+38, n+42, n+44, n+48 and n+50 are all prime.
79287805466244209, 2714623996387988519, 5012524663381750349, 6120794469172998449, 6195991854028811669, 6232932509314786109, 6808488664768715759, 10756418345074847279, 11319107721272355839, 12635619305675250719, 14028155447337025829, 14094050870111867489, 14603617704434643719, 14777669568340323479, 15420967329931107779, 16222575536498135639, 16624441191356313149, 17367037621075657349, 19289576760019250519
Offset: 1
Keywords
Links
- Dana Jacobsen, Table of n, a(n) for n = 1..209 [first 75 terms computed by Betsis and Säfholm, Forbes, Vlesycit, and Waldvogel (1982-2009)]
- Tony Forbes and Norman Luhn, Smallest Prime k-tuplets
- Norman Luhn, Table of n, a(n) for n = 1..891 (up to 10^22).
Crossrefs
Programs
-
Perl
use bigint; use ntheory ":all"; say for sieve_prime_cluster(1, 10**17, 2, 8, 14, 18, 20, 24, 30, 32, 38, 42, 44, 48, 50); # Dana Jacobsen, Oct 18 2015