login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A270310 Primes ending with the same decimal digit as the previous or next prime. 4
139, 149, 181, 191, 241, 251, 283, 293, 337, 347, 409, 419, 421, 431, 547, 557, 577, 587, 631, 641, 691, 701, 709, 719, 787, 797, 811, 821, 829, 839, 887, 907, 919, 929, 1021, 1031, 1039, 1049, 1051, 1061, 1153, 1163, 1171, 1181, 1249, 1259, 1399, 1409, 1471, 1481, 1627, 1637, 1657, 1699, 1709 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
Robert J. Lemke Oliver and Kannan Soundararajan, Unexpected biases in the distribution of consecutive primes, arXiv:1603.03720 [math.NT], 2016.
FORMULA
a(n) = prime(A270311(n)).
MATHEMATICA
Select[Prime@ Range@ 300, Function[k, Or[k == Mod[NextPrime@ #, 10], k == Mod[NextPrime[#, -1], 10]]]@ Mod[#, 10] &] (* Michael De Vlieger, Mar 15 2016 *)
Select[Partition[Prime[Range[300]], 3, 1], Mod[#[[2]], 10]==Mod[#[[1]], 10]||Mod[#[[2]], 10]== Mod[#[[3]], 10]&][[;; , 2]] (* Harvey P. Dale, Jul 21 2023 *)
PROG
(PARI) is(n)=isprime(n) && ((nextprime(n+1)-n)%10==0 || (n-precprime(n-1))%10==0) \\ Charles R Greathouse IV, Mar 15 2016
CROSSREFS
Cf. A270311.
Sequence in context: A340800 A333135 A361342 * A047652 A308788 A308796
KEYWORD
base,easy,nonn
AUTHOR
Francois Alcover, Mar 15 2016
EXTENSIONS
a(15)-a(55) from Charles R Greathouse IV, Mar 15 2016
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 20 11:10 EDT 2024. Contains 371838 sequences. (Running on oeis4.)