OFFSET
1,1
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
R. J. Lemke Oliver and K. Soundararajan, Unexpected biases in the distribution of consecutive primes, arXiv:1603.03720 [math.NT], 2016.
R. J. Lemke Oliver and K. Soundararajan, Unexpected biases in the distribution of consecutive primes, Proceedings of the National Academy of Sciences of the United States of America, Vol. 113, No. 31 (2016), E4446-E4454.
MAPLE
select(p -> isprime(p) and nextprime(p) mod 10 = 9, [seq(i, i=1..20000, 10)]); # Robert Israel, Jun 10 2024
MATHEMATICA
First @ Transpose @ Select[Partition[Select[Range[12500], PrimeQ], 2, 1], Mod[First[#], 10] == 1 && Mod[Last[#], 10] == 9 &] (* Amiram Eldar, Feb 19 2020 *)
PROG
(PARI) forprime(p=1+o=2, 1e4, p%10==9&&o%10==1&&print1(o", "); o=p) \\ M. F. Hasler, Feb 19 2020
CROSSREFS
KEYWORD
nonn
AUTHOR
A.H.M. Smeets, Feb 19 2020
STATUS
approved