A113155 Primes such that the sum of the predecessor and successor primes is divisible by 31.
311, 401, 863, 907, 1117, 1213, 1237, 1399, 1427, 2333, 3299, 3533, 3821, 3967, 4243, 4493, 5273, 5779, 6199, 6521, 7069, 8219, 8369, 8623, 8741, 8837, 8929, 9277, 9613, 10139, 10601, 10631, 10939, 11621, 11779, 12197, 12241, 12343, 12401, 12457
Offset: 1
Examples
a(1) = 311 since prevprime(311) + nextprime(311) = 307 + 313 = 620 = 31 * 20. a(2) = 401 since prevprime(401) + nextprime(401) = 397 + 409 = 806 = 31 * 26. a(3) = 863 since prevprime(863) + nextprime(863) = 859 + 877 = 1736 = 31 * 56. a(4) = 907 since prevprime(907) + nextprime(907) = 887 + 911 = 1798 = 31 * 58.
Links
- Harvey P. Dale, Table of n, a(n) for n = 1..1000
Crossrefs
Programs
-
Mathematica
Prime@Select[Range[2, 1531], Mod[Prime[ # - 1] + Prime[ # + 1], 31] == 0 &] (* Robert G. Wilson v *) Transpose[Select[Partition[Prime[Range[1500]],3,1],Divisible[#[[1]]+#[[3]], 31]&]][[2]] (* Harvey P. Dale, Mar 23 2012 *)
Formula
Extensions
Corrected and extended by Robert G. Wilson v, Jan 11 2006
Comments