OFFSET
1,1
COMMENTS
An Ormiston pair (or rearrangement prime pair) is a pair of consecutive primes that use the same digits in a different order.
LINKS
G. C. Greubel, Table of n, a(n) for n = 1..5000
Jens Kruse Andersen, Ormiston Tuples
Eric Weisstein's World of Mathematics, Rearrangement Prime Pair
EXAMPLE
(19013, 19031) is an Ormiston pair with gap 18, so 19013 is in the sequence.
MATHEMATICA
Transpose[Select[Select[Partition[Prime[Range[10000]], 2, 1], Last[#] - First[#] == 18 &], Sort[IntegerDigits[First[#]]] == Sort[IntegerDigits[Last[#]]] &]][[1]] (* G. C. Greubel, Aug 02 2017 *)
PROG
(Magma) [ p: p in PrimesUpTo(100000) | q-p eq 18 and a eq b where a is Sort(Intseq(p)) where b is Sort(Intseq(q)) where q is NextPrime(p) ];
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Klaus Brockhaus, Aug 03 2009
EXTENSIONS
Keyword base added by Klaus Brockhaus, Sep 18 2009
STATUS
approved