OFFSET
1,1
COMMENTS
Digits are in ascending order beginning with 6 and after 9 comes 0.
The sequence "Primes with n consecutive digits descending beginning with the digit six" has no terms.
EXAMPLE
6 is a term since 678901 is a prime.
MATHEMATICA
fQ[n_] := PrimeQ@ FromDigits@ Mod[5+Range@n, 10]; lst = {}; Do[ If[fQ@n, AppendTo[lst, n]; Print@n], {n, 5000}]; lst
CROSSREFS
KEYWORD
base,hard,nonn
AUTHOR
Robert G. Wilson v, Jul 05 2006
STATUS
approved