|
| |
|
|
A069567
|
|
Smaller of two consecutive primes which are anagrams of each other.
|
|
19
|
|
|
|
1913, 18379, 19013, 25013, 34613, 35617, 35879, 36979, 37379, 37813, 40013, 40213, 40639, 45613, 48091, 49279, 51613, 55313, 56179, 56713, 58613, 63079, 63179, 64091, 65479, 66413, 74779, 75913, 76213, 76579, 76679, 85313, 88379
(list;
graph;
refs;
listen;
history;
text;
internal format)
|
|
|
|
OFFSET
|
1,1
|
|
|
COMMENTS
|
Smaller members of Ormiston prime pairs.
Given the n-th prime, it is occasionally possible to form the (n+1)th prime using the same digits in a different order. Such a pair is called an Ormiston pair.
Ormiston pairs occur rarely but randomly. It is thought that there are infinitely many but this has not been proved. They always differ by a multiple of 18. Ormiston triples also exist - see A075093.
"Anagram" means that both primes must not only use the same digits but must use each digit the same number of times. [From Harvey P. Dale, Mar 06 2012]
|
|
|
REFERENCES
|
A. Edwards, Ormiston Pairs, Australian Mathematics Teacher, Vol. 58, No. 2 (2002), pp 12-13.
|
|
|
LINKS
|
Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
Jens Kruse Andersen, Ormiston Tuples
A. Edwards, Ormiston Pairs
Eric Weisstein's World of Mathematics, Rearrangement Prime Pair
|
|
|
EXAMPLE
|
1913 and 1931 are two successive primes.
Although 179 and 197 are composed of the same digits, they do not form an Ormiston pair as several other primes intervene (i.e. 181, 191, 193).
|
|
|
MATHEMATICA
|
Prime[ Select[ Range[10^4], Sort[ IntegerDigits[ Prime[ # ]]] == Sort[ IntegerDigits[ Prime[ # + 1]]] & ]]
a = {1}; b = {2}; Do[b = Sort[ IntegerDigits[ Prime[n]]]; If[a == b, Print[ Prime[n - 1], ", ", Prime[n]]]; a = b, {n, 1, 10^4}]
Transpose[Select[Partition[Prime[Range[8600]], 2, 1], Sort[IntegerDigits[ First[#]]] == Sort[ IntegerDigits[Last[#]]]&]][[1]] (* From Harvey P. Dale, Mar 06 2012 *)
|
|
|
PROG
|
(PARI) is(n)=isprime(n)&&vecsort(Vec(Str(n)))==vecsort(Vec(Str(nextprime(n+1)))) \\ Charles R Greathouse IV, Aug 09 2011
(PARI) p=2; forprime(q=3, 1e5, if((q-p)%18==0&&vecsort(Vec(Str(p)))==vecsort(Vec(Str(q))), print1(p", ")); p=q) \\ Charles R Greathouse IV, Aug 09 2011, minor edits by M. F. Hasler, Oct 11 2012
|
|
|
CROSSREFS
|
Cf. A072274, A075093, A161160, A066540.
Sequence in context: A186789 A072274 A168499 * A163678 A175517 A163863
Adjacent sequences: A069564 A069565 A069566 * A069568 A069569 A069570
|
|
|
KEYWORD
|
nonn,base,nice,changed
|
|
|
AUTHOR
|
Amarnath Murthy (amarnath_murthy(AT)yahoo.com), Mar 24 2002
|
|
|
EXTENSIONS
|
Comments and references from Andy Edwards (AndynGen(AT)aol.com), Jul 09 2002
Edited by Robert G. Wilson v, Jul 15 2002 and Aug 29, 2002
Minor edits by Ray Chandler, Jul 16 2009
|
|
|
STATUS
|
approved
|
| |
|
|