login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A163629
Numbers such that the two adjacent integers are a prime and 5 times a prime.
1
14, 16, 24, 36, 54, 66, 84, 96, 114, 156, 234, 264, 294, 306, 336, 354, 366, 396, 444, 486, 504, 546, 564, 654, 684, 744, 756, 786, 864, 906, 954, 966, 984, 996, 1116, 1164, 1194, 1284, 1554, 1566, 1584, 1656, 1734, 1746, 1866, 1914, 1986, 2004, 2154, 2214
OFFSET
1,1
LINKS
EXAMPLE
a(1)=14 which lies between 13=A000040(6) and 15=A001750(2).
a(2)=16 which lies between 15=A001750(2) and 17=A000040(7).
MATHEMATICA
prQ[n_]:=Module[{a=n-1, b=n+1}, (PrimeQ[a]&&PrimeQ[b/5])||(PrimeQ[b] && PrimeQ[a/5])]; Select[Range[3000], prQ] (* Harvey P. Dale, Jun 05 2012 *)
CROSSREFS
Sequence in context: A291907 A255846 A076023 * A228207 A175887 A305885
KEYWORD
nonn
AUTHOR
EXTENSIONS
114, 444 added, 1303 removed, 1666 replaced by 1656 - R. J. Mathar, Aug 07 2009
STATUS
approved